New test program that causes the error
This commit is contained in:
16
sw/test_code/loop_test/main.s
Normal file
16
sw/test_code/loop_test/main.s
Normal file
@@ -0,0 +1,16 @@
|
||||
.export _init, _nmi_int, _irq_int
|
||||
|
||||
.code
|
||||
|
||||
_nmi_int:
|
||||
_irq_int:
|
||||
|
||||
_init:
|
||||
lda #$00
|
||||
@1: inc
|
||||
sta $01
|
||||
lda $01
|
||||
cmp $01
|
||||
beq @1
|
||||
|
||||
@end: bra @end
|
||||
Reference in New Issue
Block a user