Questions tagged [memory-layout]
For questions regarding the layout or mapping of memory in a retrocomputer.
88 questions
9
votes
2
answers
1k
views
In the 8088, what was the time/cycles penalty for switching segments?
If the penalty was 0, then you have a flat 640K. But it wasn't zero, so what was it?
I get the feeling from reading about it that segment switching was something to be avoided at almost any cost.
11
votes
7
answers
4k
views
What was the minimum amount of addressable memory? When and why did computers become byte-addressable?
I'm watching this video, which, at 9:51, says that around the late 1980s the majority of computers were byte-addressable.
So the minimum amount of data you can retrieve from RAM was 8 bits.
What was ...
12
votes
3
answers
2k
views
What is a plausible reason for the extra hardware/cost for the Sol-PC "phantom" ROM?
The Sol-PC (also known as the Sol-10 and Sol-20) has ROM on the "personality card" addressed at $C000-$C7FF and, in a minimal configuration, RAM (for system use and the video frame buffer) ...
14
votes
2
answers
3k
views
How did MS-DOS utilities like 386MAX relocate drivers from lower 640 KB to high memory?
You copy the driver code and data but how do you redirect everything that may have jumped into the old entry point?
You could scan all the interrupt vectors and see if any of them pointed to that ...
12
votes
3
answers
2k
views
Have there been any parallel blitter implementations?
I read about blitters - history and technical implementation (what I could understand), for example in Amiga and Bally Astrocade.
The principle is that there is a fast copying of memory from one place ...
13
votes
2
answers
2k
views
Which programming language/environment pioneered row-major array order?
The Wikipedia page describing specifics of row-major vs column-major storage order for multi-dimensional arrays, mentions, among others, C/C++ (*1), Pascal and PL/I for the former, and, surely, ...
1
vote
1
answer
259
views
Is the RAM layout in Amstrad CPC .SNA snapshot files in a simple straightforward order?
I'm looking at the .SNA snapshot file format for Amstrad CPC emulators based on the Multiface Two device.
I'm used to the ZX Spectrum which had 16K ROM and 48K RAM and the 48K .SNA snapshot format is ...
12
votes
1
answer
974
views
Are there official, standard, or conventional names for the screen RAM addresses on the ZX Spectrum?
I'm working on a disassembly tool for the Sinclair ZX Spectrum and want to do things "right" when possible.
I remember seeing lists of ROM routines, system variables, and memory addresses ...
9
votes
2
answers
2k
views
How does the 8086 jump instruction work when the target address overflows?
For educational purposes, I'm developing my own software emulator for the 8086 microprocessor with VGA/MCGA support. Although it's far from complete, it's advanced enough to start using a BIOS (though ...
15
votes
4
answers
4k
views
Can DOS make use of more than 640 KB of conventional memory on 80186?
Can I have more than 640 KB conventional RAM under some DOS?
I'm looking at an 80186 PC that has RAM at address A0000. Video RAM starts at B0000 as expected for a Hercules; A0000 is just more main ...
13
votes
3
answers
3k
views
Why does PC video memory base address change depending on video mode?
It is rather well-known that, with VGA-compatible PC video adapters, in black-and-white text modes video memory is available at linear address 0xB0000, in colour text mode at address 0xB8000, while in ...
8
votes
1
answer
1k
views
C64 char screen plot routine - not clear about reason for logical OR
I'm trying out some 6502 assembly language, specifically using Kick Assembler. I have the following routine that just sticks a character on the text screen at a specified x and y, it's taken from the ...
14
votes
1
answer
2k
views
What problem does LOADFIX solve?
From MS-DOS help for the LOADFIX command:
Some programs will display the "Packed file corrupt" message when all or a portion of the program has been loaded in the first 64K of conventional ...
10
votes
2
answers
2k
views
How to use all memory on an IBM PC with 8086
I'm developing software for the IBM PC with an 8086 processor. I want my program to use all available memory.
I know that I can use DOS int 21h function AH=48h to allocate all available conventional ...
12
votes
1
answer
724
views
How to write Win16 program with only a single segment (combined code+data)?
I wrote a simple Win16 program in NASM assembly. It works on Windows 3.11. (Source code: https://github.com/pts/mininasm/blob/master/demo/hello/helljw16.nasm .)
When I tried to combine the code and ...
22
votes
4
answers
3k
views
Was it possible to cause persistent changes to a mid-1980s IBM-PC using POKE in GWBASIC?
TL;DR: Using the DEF SEG and POKE commands in GWBASIC, was there any way to make changes to an IBM-PC compatible computer that would (a) persist even after a reboot and (b) cause an increase in crash ...
19
votes
6
answers
5k
views
Where is DOS stored in memory when a program starts?
When the execution of a COM program begins, DOS jumps to address 100h. But at what address is DOS stored in RAM while the COM program is executing? Is DOS stored in conventional memory? If so, isn't ...
12
votes
2
answers
833
views
Why did the COMX-35 video memory seem unreliable?
In my early days, many many years ago, one of the machines I managed to get my hands on was the COMX-35, a funky little machine based on the 1802 CPU.
I remember trying to develop some games for it ...
24
votes
3
answers
5k
views
What were the actual memory model definitions in MS-DOS?
I've heard the phrase "memory model" used in relation to MS-DOS programming (and early Windows), with terms such as "small" and "compact".
But what were the actual ...
2
votes
1
answer
385
views
When was fixed page size, flexible assignment bank switching patented?
The 8-bit microprocessors invented in the seventies, had a 16-bit address space. It didn't take long for memory demand to exceed this, with the result that bank switching was a fact of life for the ...
23
votes
5
answers
4k
views
How did old computers address far more than 64K of memory despite only having a 16 bit address bus?
I have an old Sharp PC-G830 pocket computer from the '80s that has 32K of RAM and 256K of ROM. I also have a simple single board computer I built with 128K of RAM and a few megabytes of ROM from a ...
18
votes
3
answers
6k
views
Did anyone ever put half a megabyte of memory in an Altair?
The Altair 8800 typically, at least in the early years after its release in 1975, operated with no more than a few kilobytes of memory, for the excellent and sufficient reasons that memory was ...
7
votes
3
answers
2k
views
How did Apple IIe software handle 64K bank switching?
The early microcomputers were well served by 8-bit CPUs with 16-bit address bus width, but later generations of these machines tended to run out of address space, and had to resort to some form of ...
10
votes
2
answers
4k
views
Why did the BIOS load the MBR at 0x7c00?
The IVT is at 0x0000-0x03ff while the BDA is at 0x0400-0x04ff but boot sectors are loaded at 0x7c00. What was at 0x0500-0x7bff that caused this convention? I'm also curious why some MBRs relocate ...
20
votes
3
answers
5k
views
What is the purpose of mirrored memory regions in NES's CPU memory map? [duplicate]
[Please see answers to this related question as well]
I've started reading the "official" NES Documentation and in page ten, it says that "memory locations $0000-$07FF are mirrored ...
5
votes
1
answer
883
views
How to assign code to different PRG-ROM banks on an NES ROM using ca65/ld65
A similar question was asked here but I read it and didn't really understand the solution.
What I'm trying to do here is make an NES ROM that uses Mapper 24, aka Konami VRC6 Version 1 (the one used by ...
16
votes
2
answers
1k
views
How much of the Program Segment Prefix area can be reused by programs with impunity?
I am writing a tiny TSR program, and I want it to take as little memory while installed as possible. The memory footprint of every loaded DOS process, including a TSR, includes a data structure known ...
5
votes
1
answer
561
views
How did games written for tape-based BBC micro, get officially and unofficially ported to disk, bearing in mind extra workspace needed by DFS ROM?
If I recall, PAGE = &E00 for a BBC Model B system with cassette tape based storage.
On installation of Acorn DFS ROM (with 8271 Floppy disc controller), the ROM allocated more memory, increasing ...
5
votes
2
answers
704
views
What is the reason of the particular range of the last 4K block of memory selection in Apple II
Following my previous question on Identifying the functionality of the memory select in Apple II and now that I know that the memory select device is simply an interconnection block. Searching for ...
6
votes
1
answer
2k
views
Bank switching and memory perspectives (C64)
I've been reading up on bank switching on Wiki and in particular here which contains the below nice image and have a few questions:
Am I right in thinking that LOAD loads into RAM (dark grey in the ...
4
votes
2
answers
1k
views
Transforming a memory dump into something loadable
As a follow-up to this question, I now have:
A memory dump of the unpacked application
The start address of the application
I can verify that the dump is correct by starting a new instance of Vice, ...
8
votes
2
answers
1k
views
How can I malloc() a block that's guaranteed to lie within a single DMA segment in Turbo C 2.01?
I'm following root42's videos about DOS programming using Turbo C 2.01. I've written my own Soundblaster 1.xx driver following the Creative Labs documentation, and I'm confused about memory allocation....
9
votes
2
answers
370
views
Paradigm for (repeated) use of PDP-10 indirect bit
Answers to question PDP-10 effective address calculation explain how PDP-10 effective address calculation works, including potentially infinite indirections.
However the answers don't address how this ...
26
votes
8
answers
15k
views
Did any computer use a 7-bit byte?
In an answer to Why did IBM System 360 have byte addressable RAM I wrote regarding the choice of byte size:
7 bits would be a perfect match for ASCII, but engineers would instinctively recoil from ...
9
votes
1
answer
3k
views
What is the memory layout in MS-DOS
I know that when an .COM file is loaded, DOS loads its contents into memory, sets the segment registers (CS, DS and SS) to point to the 64KB segment and then performs a jmp to the starting address. ...
7
votes
2
answers
575
views
Details of ZS Scorpion port 0x1ffd
There's this page about the ZS Scorpion, and I'm reading about the way bankswitching works. Port 0x7ffd is the same as on western ZX Spectrums, but to double the amount of RAM to 256k and also the ...
11
votes
3
answers
3k
views
How can I access/use memory outside of the standard 1 MB address range of MS-DOS?
How do you access more memory (above the 1MB) in DOS if the 640KB of conventional memory are not enough?
I have read a lot about this, but I couldn't figure out how to do this in actual code. Is ...
17
votes
2
answers
4k
views
How was a line of Commodore 64 BASIC code stored in its memory?
I am reading up on old C64 stuff and I am using the Vice emulator to play with it. Currently I am studying about how the C64 stored BASIC programs in RAM.
This is quite clear (it starts on address $...
4
votes
7
answers
641
views
Static memory partitioning
Does anyone know of any operating system that used static memory partitioning: contiguous physical memory allocation with one process per partition, one partition per process, partitions generated at ...
9
votes
2
answers
2k
views
In the Amstrad CPC's Mode 0, what was the design rationale for interleaving the pixel bits?
The following tables are modified and corrected from Painting pixels: Introduction to video memory.
Mode 2 - 640x200 (half width pixels), 2 colours
memory bit
7
6
5
4
3
2
1
0
pixel
0
1
2
3
4
5
6
7
...
14
votes
1
answer
2k
views
Why did the Amstrad CPC use a nonlinear screen memory layout?
The screen memory layout on the Commodore 64 in bitmap mode was nonlinear - which incurred a penalty in development time, code size and speed for games using it - because when designing the VIC-II, ...
16
votes
1
answer
2k
views
What are the "ports" used via IN/OUT, vs. the PEEK/POKE address space?
This is something of a followup to How much control of TRS-80 Model III disk drives was possible from its Cassette (ROM) BASIC? but on a more general topic:
I know that PEEK and POKE enable direct ...
6
votes
2
answers
2k
views
How did the BBC sideways ROM software for the AMX mouse process the user port input data to determine x and y movement?
This mouse plugged into the user port on the underside of the BBC micro models. The mouse came with software in the form of a sideways ROM which provided APIs, CLI commands for own programs as well as ...
22
votes
1
answer
3k
views
How is memory allocated in Super Mario World?
Super Mario World (SMW) is known to have several bugs relating to re-use of memory for multiple purposes. For example some memory items are used for more than one type of item, and the designers are ...
9
votes
10
answers
1k
views
Were there any games/software that used memory beyond what was advertised available to BASIC on the machine?
Were there any games/software that used memory beyond what was advertised as available to BASIC on the machine ?
On home / personal computers any time up to 1984 .
Without needing to plug in any ...
3
votes
2
answers
227
views
virtual addressing in device drivers
Sun's SBus is particular for having virtual addressing and address translation even for device drivers.
Any other buss design which had this peculiarity ?
Check out Ben Catanzaro's book The SPARC ...
15
votes
1
answer
3k
views
What manages Upper Memory Blocks (UMBs) in MS-DOS?
I had always assumed that EMM386.EXE was responsible for managing the Upper Memory Blocks - UMBs - the memory space between 640KiB and 1MiB in real mode x86. For example, on MS-DOS 6.22, help emm386....
10
votes
2
answers
1k
views
Can the Nintendo 64 run code directly from ROM?
I've read that the usual way to execute code on the N64 is to use DMA to copy it from ROM into RAM, and then run from RAM.
However, it seems that the contents of the ROM are directly visible to the ...
10
votes
3
answers
5k
views
Disable memory refresh on Z80
Is there a software method of disabling memory refresh on the Z80? Or would it be acceptable to create a hardware method of disabling the address bus during the refresh cycle? If I switch off the ...
7
votes
4
answers
2k
views
How to use HGR2 (or HGR) on an Apple II
I am a big fan of the TV show lost, and I was trying to make the Dharma Initiative logo.
But at certain point I couldn't add new lines of code and the final part of the logo was cut off. I tried to ...