New GeoRAM driver

git-svn-id: svn://svn.cc65.org/cc65/trunk@1676 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2002-11-29 14:41:21 +00:00
parent a1a3022b5c
commit a2d6c68717
3 changed files with 273 additions and 2 deletions

View File

@@ -11,6 +11,9 @@
%.o: %.s
@$(AS) -g -o $@ $(AFLAGS) $<
%.emd: %.o ../runtime/zeropage.o
@$(LD) -t module -o $@ $^
%.tgi: %.o ../runtime/zeropage.o
@$(LD) -t module -o $@ $^
@@ -32,16 +35,17 @@ OBJS = _scrsize.o \
TGIS = c64-320-200-2.tgi
EMDS = c64-georam.emd
#--------------------------------------------------------------------------
# Targets
all: $(OBJS) $(TGIS)
all: $(OBJS) $(EMDS) $(TGIS)
../runtime/zeropage.o:
$(MAKE) -C $(dir $@) $(notdir $@)
clean:
@rm -f $(OBJS) $(TGIS:.tgi=.o)
@rm -f $(OBJS) $(EMDS:.emd=.o) $(TGIS:.tgi=.o)