1
0
mirror of https://github.com/weiju/amiga-stuff synced 2025-11-20 16:49:19 +00:00
Files
amiga-stuff/assembler/test1.asm
2013-02-26 22:23:48 -08:00

14 lines
260 B
NASM

;; This is a small test for compiling to 68000 assembly
;; note that there is no space allowed in the operand field
start:
move.l #5,d0
add.l #1,d0
sub.l #2,d0
jsr label1
rts
label1:
moveq #1,d0
rts