Add indirect test

This commit is contained in:
Byron Lathi
2023-10-15 13:37:13 -07:00
parent 32f6c0f8d9
commit e0e20d7fb4
4 changed files with 108 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
.export _init, _nmi_int, _irq_int
.code
_nmi_int:
_irq_int:
_init:
ldx #$ff
txs
lda #$aa
sta $01
lda #$bb
sta $00
ldy #$1
lda #$cc
sta ($00),y
@end: bra @end