1
0
mirror of https://github.com/specht/champ.git synced 2024-06-08 13:29:29 +00:00
champ/examples/example02.s
2018-02-16 21:50:01 +01:00

15 lines
218 B
ArmAsm

DSK test
MX %11
ORG $6000
FOO EQU $8000 ; @u16
JSR TEST
BRK
TEST LDA #0
STA FOO
LDA #$40
STA FOO+1 ; @FOO(post)
RTS