New test program that causes the error

This commit is contained in:
Byron Lathi
2023-09-26 18:23:01 -07:00
parent c2dd5d616b
commit 915188e8f1
5 changed files with 105 additions and 1 deletions

View 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