Get rid of manual sym defines in sym_ewram.txt and ld_script_modern.txt

This commit is contained in:
luckytyphlosion
2020-07-04 18:14:40 -04:00
parent aecf2dbf6e
commit d7df6bf6e3
8 changed files with 30 additions and 77 deletions
+6 -6
View File
@@ -1,11 +1,11 @@
#!/bin/sh
#!/bin/bash
# Compares baserom.gba and pokefirered.gba
# create baserom.txt if necessary
if [ ! -f baserom.txt ]; then
hexdump -C baserom.gba > baserom.txt # can create an empty baserom.txt if no baserom.gba
# create baserom_compare.dump if necessary
if [ ! -f baserom_compare.dump ]; then
hexdump -C baserom.gba > baserom_compare.dump # can create an empty baserom_compare.dump if no baserom.gba
fi
hexdump -C pokefirered.gba > pokefirered.txt
hexdump -C pokefirered.gba > pokefirered_compare.dump
diff -u baserom.txt pokefirered.txt | less
diff -u baserom_compare.dump pokefirered_compare.dump | less