BIOS Calls
BIOS calls are indexed into a “jump table” allowing higher level code to call them without knowing the underlying addresses. This allows the ROM routine implementations to move around without needing to re-assemble/compile code that accesses them. These are only used for code that is assembled outside of the rom_image folder. This is very much in flux, as I haven’t used it for anything but some testing yet.
Interrupt Vectors
- Reset: Points to the BIOS initialization routine
- IRQ: Right now is a dummy routine
- NMI: I use the NMI on these systems as a last ditch effort troubleshooting measure. Triggering an NMI will cause the system to dump the current processor registers and return from the interrupt. This is remniscent of the message that is printed when an Apple IIe “crashes” to its monitor. Disclaimer: This wasn’t my idea, it likely came from 6502.org or Garth Wilson’s page.