Make a banked-RAM version of the assembler #3
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The hiloader loads at $A000 (was $C800 on C64), and on the X16 you can put this in any bank you want, and it stays resident unless you overwrite it or reset the machine.
The assembler currently only runs at $0801 with a BASIC stub. It'd be nice to run it at $A000 also, so you could put it in (for example) bank 3 and the hiloader in bank 4, and write your program with a BASIC stub at $0801, and then you can just flip back and forth between editing (with the ROM editor), assembling (
SYS $3:A000), loading (SYS $4:A000), and running (RUN).Current obstacles to this: