From f37662233016d851865db68aa0c48351de5309bd Mon Sep 17 00:00:00 2001 From: Brad Grantham Date: Sat, 28 Jul 2018 12:12:52 -0700 Subject: [PATCH] add apple2a.com target --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 00287fc..d60fc1a 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,10 @@ CC65 = $(HOME)/trees/cc65/bin/ CPU = 6502 +apple2a.rom: a.out + (dd count=5 bs=4096 if=/dev/zero ; cat a.out) > apple2a.rom + + a.out: main.o interrupt.o vectors.o apple2rom.cfg apple2rom.lib $(CC65)/ld65 -C apple2rom.cfg -m main.map --dbgfile main.dbg interrupt.o vectors.o main.o apple2rom.lib