diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/popcnt2.s | 4 | ||||
-rw-r--r-- | test/struct.s | 31 |
2 files changed, 33 insertions, 2 deletions
diff --git a/test/popcnt2.s b/test/popcnt2.s index 3aa38f0..503b074 100644 --- a/test/popcnt2.s +++ b/test/popcnt2.s @@ -14,7 +14,7 @@ popcnt: bra @loop ; Keep looping. @end: tya ; Return the bit count. - rts.w ; End of popcnt. + rts ; End of popcnt. reset: @@ -27,7 +27,7 @@ reset: tay ; Reset Y. main: pha.q ; Save A. - jsr.w popcnt ; Get population count. + jsr popcnt ; Get population count. tay ; Save it in Y. pla.q ; Get A back. inc ; Increment A by one. diff --git a/test/struct.s b/test/struct.s new file mode 100644 index 0000000..dce527d --- /dev/null +++ b/test/struct.s @@ -0,0 +1,31 @@ +.struct lol + oof .byte + cia .word + glo .dword + nig .qword + .union asd + f .qword + ss .byte + .struct aa + lol .qword + why .word + .endstruct + .endunion + why .word +.endstruct + + +.org 0 + +lda #1 +ldb #lol.asd.f +ldx #lol.asd.ss +ldy #lol.glo +lda #lol.oof +ldb #lol.asd.aa.lol +ldx #lol.asd.aa.why +ldy #lol.why +a +l a +v +q |