1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-26 13:18:31 +00:00

NES character mode TGI driver. By Stefan Haubenthal.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5067 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2011-06-21 20:34:18 +00:00
parent 3f2f3baa27
commit eae262b7c3
5 changed files with 850 additions and 110 deletions
+17 -1
View File
@@ -41,6 +41,18 @@ CFLAGS = -Osir -g -T -t $(SYS) --forget-inc-paths -I . -I ../../include
%.tgi: %.o ../runtime/zeropage.o
@$(LD) -o $@ -t module $^
nes-64-56-2.tgi: nes-64-56-2.o \
../runtime/popa.o \
../runtime/zeropage.o \
clrscr.o \
cputc.o \
get_tv.o \
gotoxy.o \
ppu.o \
ppubuf.o \
setcursor.o
@$(LD) -o $@ -t module $^
#--------------------------------------------------------------------------
# Object files
@@ -80,7 +92,7 @@ MOUS =
SERS =
TGIS =
TGIS = nes-64-56-2.tgi
#--------------------------------------------------------------------------
# Targets
@@ -89,6 +101,9 @@ TGIS =
all: $(OBJS) $(EMDS) $(JOYS) $(MOUS) $(SERS) $(TGIS)
../runtime/popa.o:
$(MAKE) -C $(dir $@) $(notdir $@)
../runtime/zeropage.o:
$(MAKE) -C $(dir $@) $(notdir $@)
@@ -99,3 +114,4 @@ zap: clean
@$(RM) $(EMDS) $(JOYS) $(MOUS) $(SERS) $(TGIS)