1
0
mirror of https://github.com/weiju/amiga-stuff synced 2025-12-08 14:58:33 +00:00

initial version

This commit is contained in:
Wei-ju Wu
2013-02-26 22:23:48 -08:00
commit adc0ad456a
25 changed files with 1881 additions and 0 deletions

13
assembler/test1.asm Normal file
View File

@ -0,0 +1,13 @@
;; 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