diff options
author | U-Fish-PC\Daniel <corrnondacqb@yahoo.com> | 2014-04-17 17:25:31 -0400 |
---|---|---|
committer | U-Fish-PC\Daniel <corrnondacqb@yahoo.com> | 2014-04-17 17:42:38 -0400 |
commit | 68a67314d1011aeb3f36702028ee0ccae643b416 (patch) | |
tree | 84e0b412bddbb1c4578cfa2e74987933bf6c5a06 | |
parent | b6fd865414d57c68cd668600eba43d2ee3e47065 (diff) |
Make a .sym and .map file
-rwxr-xr-x | .gitignore | 4 | ||||
-rwxr-xr-x | Makefile | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -4,6 +4,10 @@ # roms *.gbc +# rgbds extras +*.map +*.sym + # for any of the poor souls with save game files in their working directory *.sgm *.sav @@ -11,7 +11,7 @@ compare: baserom.gbc $(ROMS) rgbasm -o $@ $< tcg.gbc: $(OBJS) - rgblink -o $@ $^ + rgblink -n tcg.sym -m tcg.map -o $@ $^ rgbfix -cjsv -k 01 -l 0x33 -m 0x1b -p 0 -r 03 -t POKECARD -i AXQE $@ clean: |