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

added disassembling for cmp

This commit is contained in:
Wei-ju Wu
2015-01-01 23:41:18 -08:00
parent 043e468b93
commit d750320456
2 changed files with 15 additions and 4 deletions

View File

@ -2,7 +2,7 @@ ASM_FLAGS = -Fhunk -devpac -I/home/weiju/Development/NDK_3.9/Include/include_i
ASM = vasmm68k_mot
.SUFFIXES : .o .asm
all: test1 hello test2 mouse raster1
all: test1 hello test2 mouse raster1 raster2
.asm.o:
$(ASM) $(ASM_FLAGS) -o $@ $<
@ -23,3 +23,6 @@ mouse: mouse.o
raster1: raster1.o
vlink -bamigahunk -o $@ -s $<
raster2: raster2.o
vlink -bamigahunk -o $@ -s $<