1
0
mirror of https://github.com/fadden/6502bench.git synced 2024-09-11 20:54:37 +00:00
6502bench/SourceGen/Examples/Scripts/Sample.S

19 lines
330 B
ArmAsm
Raw Normal View History

org $1000
jsr PrintInlineL1String
str 'How long?'
jsr PrintInlineZString1
asc 'Test one',00
jsr PrintInlineZString2
asc 'Test two',00
rts
PrintInlineL1String
rts
PrintInlineZString1
rts
PrintInlineZString2
rts