Files
Sepp J Morris 31738079c4 Upload
Digital Research
2020-11-06 18:50:37 +01:00

13 lines
218 B
ArmAsm

*
* as68 / lo68 test program -- part 1
*
.globl print
.globl exit
start: move.l #20,d2
loop: jsr print * String print routine
subq.l #1,d2 * subtract 1
bne loop * and call again
jsr exit * call quit routine