This commit is contained in:
Joshua Bell 2021-11-05 17:44:04 -07:00
commit 66427d4f01
3 changed files with 1597 additions and 0 deletions

26
Makefile Normal file
View File

@ -0,0 +1,26 @@
CAFLAGS := --target apple2enh --list-bytes 0
LDFLAGS := --config apple2-asm.cfg
OUTDIR := out
TARGETS := $(OUTDIR)/u2_disasm.bin
.PHONY: clean all package
all: $(OUTDIR) $(TARGETS)
$(OUTDIR):
mkdir -p $(OUTDIR)
HEADERS := $(wildcard *.inc)
clean:
rm -f $(OUTDIR)/*.o
rm -f $(OUTDIR)/*.list
rm -f $(TARGETS)
$(OUTDIR)/%.o: %.s $(HEADERS)
ca65 $(CAFLAGS) $(DEFINES) --listing $(basename $@).list -o $@ $<
$(OUTDIR)/%.bin: $(OUTDIR)/%.o
ld65 $(LDFLAGS) -o $@ $<

BIN
u2_c300_cfff Normal file

Binary file not shown.

1571
u2_disasm.s Normal file

File diff suppressed because it is too large Load Diff