mgkaiser wrote: ↑Wed Mar 19, 2025 12:53 am
Will you be able to map the ROM completely out for 16MB of RAM (minus IO, of course)? If so you could completely replace the ROMs with a 16bit OS. I think I plan on taking a crack at writing on that is similar to AmigaOS with a GUI and preemptive multitasking.
The first 64k is mostly the same as the CX16 memory map (described in
chapter 8 of the reference, and summarized below) but they're considering the possibility of mapping additional RAM in place of the 16 KB ROM window.* The other 15.9375 MB of address space is all RAM that's new to the CX16GS (and is what I would expect to see in a CPU interposer board plugged Ito an old system).
That first 64K is particularly important because that's where the stack and direct page live. (It's also where things like the reset and interrupt vectors are located, which is why you need to have some ROM mapped there, at least at startup.)
On the 65C816 the Stack Pointer can be anywhere in that first 64k, unlike the 6502 and 65C02 where it's stuck on page 1 ($0100–01FF). The Direct Page, which can be located anywhere in that first 64K acts like the 6502/65C02 zero page (which was fixed at $0000–00FF on a 6502 or 65C02) except that you can now move it around. Being able to map it (and the stack) anywhere in the first 64KB is useful for making a real operating system and was heavily used on GS/OS on the Apple IIGS where each running program got its own stack and direct page and various parts of the operating system and libraries also had their own direct pages.
The current CX16 memory map looks like this:
$0000–00FF: zero page
$0100–01FF: stack
$0200–9EFF: Normal RAM
$9F00–9FFF: memory-mapped I/O
$A000–BFFF: Banked RAM (8 KB window into any one of 266 banks of RAM, 2 MB total)
$C000–FFFF: Banked ROM (16 KB window into one of 32 banks of system ROM, or one of 224 banks of cartridge ROM)
The CX16GS has significantly more memory. The 65C816 has a 24-bit address space, segmented into 256 64KB banks. Unfortunately the CX16 is already using the term "bank" for its $A000–BFFF RAM window and $C000–FFFF ROM window, so using the word bank for both of those as well as the 65C816's 64k banks might be confusing. We could refer to the bigger banks as segments or something (which would match up with 80x86 naming) but all 65C816 documentation refers to banks, so I think we're probably stuck with that terminology.
Most 65C816 instructions are inherited from the 6502 or 65C02 architectures, so for the most part they use 16-bit addresses. Only a handful of instructions use "long" addressing that can directly use 24 bits. So how do the older instructions reach the full 24-bit address space? Well, there's a "Program Bank" register that holds the top 8 bits of the program counter and when using JMP and JSR instructions that take a 16-bit address, they always use the Program Bank register for the top 8 bits of the destination address. Similarly there's a Data Bank register that store the top 8 address bits to use for Instructions that load or store data in memory. (Aside from the handful that specify full 24-bit addresses.) As a result it's usually best to think of the memory as being in 256 separate memory banks, even though there are a few instructions that can treat it as one linear 24-bit address space.
The convention on the Apple IIGS was to write addresses with a slash between the bank byte and the 16-bit address within the bank. So the first bank was $00/0000 through $00/FFFF, the second bank was $01/0000 through $01/FFFF, etc. I don't know what the typographical convention will be on the CX16GS, so I'll use the IIGS notation here.
From what I understand, the CX16GS memory map will look like this. (I could be wrong, and hopefully someone will show up with corrections if I misunderstood anything.) Changes from the CX16 are in bold:
$00/0000–9EFF: normal RAM.
(In emulation mode the direct page will be at $00/0000–00FF and the stack will be at $00/0100–01FF, but in native mode they can be moved to anywhere in bank $00.)
$00/9F00–9FFF: memory-mapped I/O
$00/A000-BFFF: banked RAM (8 KB window into one of 256 banks of RAM, 2 MB total)
$00/C000–FFFF: banked ROM
/RAM (16 KB window into one of 32 banks of system ROM, or one of 224 banks of cartridge ROM
OR one of 256 banks of RAM (4MB total)*)
$01/0000–FFFF: normal RAM
$02/0000–FFFF: normal RAM
$03/0000–FFFF: normal RAM
$04/0000–FFFF: normal RAM
…
$FF/0000–FFFF: normal RAM
So as you can see, the entire 24-bit address space is mapped as normal RAM (with banks $01 through $FF completely free for you to use for anything you want, as the KERNAL doesn't use it) except for a few parts of bank $00. (And it looks like CX16GS might* even let you replace the ROM areas with more RAM, but unless you end up needing it for stack or direct page space I don't see why you'd bother, given you have a full 16 MB available for everything else. You can see why I think supporting the main 16 MB in the native 24-bit address space in an add-in card on the CX16 would be way more useful than bothering with mapping RAM into the 16KB ROM window at $00/C000–FFFF.)
* It looks like the mapping RAM in place of ROM isn't implemented yet and may be subject to change, according to the
FAQ.