1
0
mirror of https://github.com/specht/champ.git synced 2024-06-01 13:41:32 +00:00
champ/examples/example01.s

14 lines
252 B
ArmAsm
Raw Permalink Normal View History

2018-02-16 14:05:05 +00:00
DSK test
MX %11
ORG $6000
2023-01-10 12:58:42 +00:00
2018-02-16 14:05:05 +00:00
FOO EQU $8000
JSR TEST
BRK
2023-01-10 12:58:42 +00:00
2018-02-16 14:05:05 +00:00
TEST LDA #64 ; load 64 into accumulator
2023-01-10 12:58:42 +00:00
ASL ; multiply by two @Au
2018-02-16 14:05:05 +00:00
STA FOO ; store result @Au
RTS