diff options
-rwxr-xr-x | compare-ruby.sh | 11 | ||||
-rwxr-xr-x | compare-sapphire.sh | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/compare-ruby.sh b/compare-ruby.sh new file mode 100755 index 000000000..5fbd2a1c8 --- /dev/null +++ b/compare-ruby.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# Compares baserom-ruby.gba and pokeruby.gba + +# create baserom.txt if necessary +if [ ! -f baserom-ruby.txt ]; then + hexdump -C baserom-ruby.gba > baserom-ruby.txt +fi + +hexdump -C pokeruby.gba > pokeruby.txt + +diff -u baserom-ruby.txt pokeruby.txt | less diff --git a/compare-sapphire.sh b/compare-sapphire.sh new file mode 100755 index 000000000..b4047e81d --- /dev/null +++ b/compare-sapphire.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# Compares baserom-sapphire.gba and pokesapphire.gba + +# create baserom.txt if necessary +if [ ! -f baserom-sapphire.txt ]; then + hexdump -C baserom-sapphire.gba > baserom-sapphire.txt +fi + +hexdump -C pokesapphire.gba > pokesapphire.txt + +diff -u baserom-sapphire.txt pokesapphire.txt | less |