display logo gfx, misc gfx related helpers

This commit is contained in:
ikari
2009-10-14 10:52:37 +02:00
parent b7d32d6285
commit ed22950f47
18 changed files with 3595 additions and 4 deletions

17
snes/Makefile Normal file
View File

@@ -0,0 +1,17 @@
OBJS = header.ips reset.o65 main.o65 font.o65 palette.o65 data.o65 const.o65 logo.o65 # gfx.o65 # vars.o65
all: menu.bin
menu.bin: $(OBJS)
sneslink -fsmc -o $@ $^
# Generic rule to create .o65 out from .a65
%.o65: %.a65
snescom -J -Wall -o $@ $<
# Generic rule to create .ips out from .a65
%.ips: %.a65
snescom -I -J -Wall -o $@ $<
clean:
rm -f *.ips *.o65 *~ menu.bin