diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2020-07-04 18:14:40 -0400 |
---|---|---|
committer | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2020-07-04 18:14:40 -0400 |
commit | d7df6bf6e3b6066bef0bd0602b0b9c2d036f100a (patch) | |
tree | 84f7564fdc72867f44e9c5acf6b1dae78b5f13b6 /compare.sh | |
parent | aecf2dbf6e26469cc40ab2c3aec155aecba7091b (diff) |
Get rid of manual sym defines in sym_ewram.txt and ld_script_modern.txt
Diffstat (limited to 'compare.sh')
-rw-r--r-- | compare.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/compare.sh b/compare.sh index 86db204ee..10279b616 100644 --- a/compare.sh +++ b/compare.sh @@ -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 |