Lots of stuff.

This commit is contained in:
2025-06-23 15:35:36 -04:00
parent 87ae4e7890
commit 2939e1cac5
120 changed files with 9335 additions and 2178 deletions
+26
View File
@@ -0,0 +1,26 @@
* = $A000
.fill Reset - *, $ea
Reset:
SEI
CLD
LDX #$FF
TXS
; Drop to the start of our main loop
MainLoop:
LDA #$AA
ROR
JMP MainLoop
; What to do when we get a NMI
NMI:
RTI
; What do we get when we get an interrupt
IRQ:
RTI
; setup the requirements for the CPU
* = $FFF8
.word NMI
.word Reset
.word IRQ
+22
View File
@@ -0,0 +1,22 @@
* = $0000
.fill Reset - *, $ea
Reset:
SEI
CLD
LDX #$FF
TXS
MainLoop:
NOP
JMP MainLoop
NMI:
RTI
IRQ:
RTI
* = $FFF8
.word NMI
.word RESET
.word IRQ