early status messages

This commit is contained in:
ikari
2010-12-12 03:04:55 +01:00
parent 31d9e1a1d2
commit 2005d98a98
12 changed files with 835 additions and 0 deletions

19
snes/boot/Makefile Normal file
View File

@@ -0,0 +1,19 @@
OBJS = header.ips reset.o65 main.o65 font.o65 palette.o65 data.o65 const.o65 text.o65 dma.o65 # gfx.o65 # vars.o65
all: menu.bin menu.smc
menu.smc: menu.bin
cat menu.bin sd2snes.rom > $@
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