test disable irq
This commit is contained in:
parent
8d571d0c55
commit
fef90c7f6e
@ -21,6 +21,8 @@ linkfile:
|
||||
optixx.inc: optixx.pcx
|
||||
wine tools/pcx2snes.exe optixx.pcx -b2 -nOptixx -ooptixx.inc
|
||||
|
||||
check:
|
||||
ucon64 -chk $(APP)
|
||||
|
||||
%.o: %.asm
|
||||
echo "$@" >> linkerfile.prj
|
||||
|
||||
@ -28,11 +28,12 @@
|
||||
CARTRIDGETYPE $00 ; $00 = ROM only, see WLA documentation for others
|
||||
ROMSIZE $08 ; $08 = 2 Mbits, see WLA doc for more..
|
||||
SRAMSIZE $00 ; No SRAM see WLA doc for more..
|
||||
COUNTRY $01 ; $01 = U.S. $00 = Japan, that's all I know
|
||||
COUNTRY $02 ; $01 = U.S. $00 = Japan, that's all I know
|
||||
LICENSEECODE $00 ; Just use $00
|
||||
VERSION $00 ; $00 = 1.00, $01 = 1.01, etc.
|
||||
.ENDSNES
|
||||
|
||||
|
||||
.SNESNATIVEVECTOR ; Define Native Mode interrupt vector table
|
||||
COP COPHandler
|
||||
BRK BRKHandler
|
||||
@ -41,6 +42,7 @@
|
||||
IRQ IRQHandler
|
||||
.ENDNATIVEVECTOR
|
||||
|
||||
|
||||
.SNESEMUVECTOR ; Define Emulation Mode interrupt vector table
|
||||
COP EmptyHandler
|
||||
ABORT EmptyHandler
|
||||
|
||||
@ -111,7 +111,7 @@ ABRTHandler:
|
||||
prints "ABRTHandler"
|
||||
rti
|
||||
NMIHandler:
|
||||
;prints "NMIHandler"
|
||||
prints "NMIHandler"
|
||||
rti
|
||||
|
||||
IRQHandler:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user