1
0
mirror of https://github.com/specht/champ.git synced 2025-02-20 13:29:09 +00:00
champ/examples/example02.s

15 lines
218 B
ArmAsm
Raw Normal View History

2018-02-16 15:05:05 +01:00
DSK test
MX %11
ORG $6000
FOO EQU $8000 ; @u16
JSR TEST
RTS
TEST LDA #0
STA FOO
LDA #$40
STA FOO+1 ; @FOO(post)
RTS