Add test programs

This commit is contained in:
Byron Lathi
2022-12-23 14:20:44 -05:00
parent 9947fbdfe2
commit 33e33231a7
4 changed files with 101 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
.code
main: lda #$ff
jsr stacktest
end: bra end
stacktest:
lda #$55
pha
lda #$00
pla
sta $efff
rts
.segment "VECTORS"
.addr main
.addr main
.addr main