mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 08:24:18 +00:00
13 lines
218 B
ArmAsm
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
|
|
|