Add gbafix from devkitPro/gba-tools

This commit is contained in:
Diegoisawesome
2018-08-29 23:08:57 -05:00
parent 7737025f4e
commit 064216d3be
6 changed files with 969 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
CC = gcc
.PHONY: clean
SRCS = gbafix.c
gbafix: $(SRCS)
$(CC) $(SRCS) -o $@ $(LDFLAGS)
clean:
$(RM) gbafix gbafix.exe