Update tests with basic init

This commit is contained in:
2025-12-13 20:29:52 -06:00
parent 4113570eb3
commit fecef26e2f
12 changed files with 17349 additions and 56 deletions

26
test-rom/basic-cpu.asm Normal file
View File

@@ -0,0 +1,26 @@
; FINAL = ""
.inesprg 2 ; 2 banks
.ineschr 1 ;
.inesmap 0 ; mapper 0 = NROM
.inesmir 0 ; background mirroring, horizontal
.org $8000
RESET:
sed
hlt
ERROR_:
hlt
IGNORE:
rti
.org $FFFA ; Interrupt vectors go here:
.word IGNORE ; NMI
.word RESET ; Reset
.word IGNORE; IRQ
;;;; NESASM COMPILER STUFF, ADDING THE PATTERN DATA ;;;;
; .incchr "Sprites.pcx"
; .incchr "Tiles.pcx"