diff options
-rw-r--r-- | Makefile | 12 | ||||
-rw-r--r-- | runall | 1 | ||||
-rw-r--r-- | rundoc | 9 |
3 files changed, 14 insertions, 8 deletions
@@ -18,7 +18,7 @@ # # ------------------------------------------------------------------------- # -# $Id: Makefile,v 1.6 2006-08-27 23:55:05 ianc Exp $ +# $Id: Makefile,v 1.7 2006-08-28 00:19:04 ianc Exp $ # # This CFLAGS assumes that gcc is being used. @@ -55,13 +55,17 @@ emucpm.hex: emucpm.z80 tpasm -P Z80 -o intel emucpm.hex emucpm.z80 zexdoc.hex: zexdoc.z80 - tpasm -P Z80 -o intel zexdoc.hex zexdoc.z80 + tpasm -P Z80 -o text _tmp -o intel zexdoc.hex zexdoc.z80 + tail +4 _tmp | awk '{printf("%s 0x%s\n",$$2,$$1);}' > zexdoc.lbl + rm -f _tmp zexall.hex: zexall.z80 - tpasm -P Z80 -o intel zexall.hex zexall.z80 + tpasm -P Z80 -o text _tmp -o intel zexall.hex zexall.z80 + tail +4 _tmp | awk '{printf("%s 0x%s\n",$$2,$$1);}' > zexall.lbl + rm -f _tmp clean: - rm -f $(TARGET) $(OBJECTS) core $(TARGET).exe *.hex + rm -f $(TARGET) $(OBJECTS) core $(TARGET).exe *.hex *.lbl depend: makedepend -- $(CFLAGS) -- $(SOURCE) @@ -1,4 +1,5 @@ i emucpm.hex i zexall.hex +D zexall.lbl s r 0x100 @@ -1,6 +1,7 @@ i emucpm.hex i zexdoc.hex -s -r 0x100 -#p 0x100 -#n +D zexdoc.lbl +#s +#r 0x100 +p 0x100 +n |