preparing to do a cp/m cleanup

i wrote most of this up to here on a linux laptop, but some
changes need to be made to get it working with CP/M-80.
This commit is contained in:
2023-10-03 20:59:03 -07:00
parent a43054deec
commit a60a6a3f59
7 changed files with 325 additions and 60 deletions

View File

@@ -1,6 +1,6 @@
TARGETS := test undump
LIBS := binary.pas ihex.pas
FPC_FLAGS := -g
TARGETS := test dump undump
LIBS := binary.pas common.pas ihex.pas
FPC_FLAGS := -g -Mtp
FPC := fpc $(FPC_FLAGS)
.PHONY: all
@@ -13,6 +13,9 @@ clean:
test: test.pas $(LIBS)
$(FPC) $@.pas
undump: undump.pas binary.pas ihex.pas
undump: undump.pas $(LIBS)
$(FPC) $@.pas
dump: dump.pas $(LIBS)
$(FPC) $@.pas