diff options
author | YamaArashi <YamaArashi@users.noreply.github.com> | 2016-09-03 13:45:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-03 13:45:05 -0700 |
commit | dbaf6e125020cac5d897983dc9dfbf8d3d74e589 (patch) | |
tree | 2cf7c01a63ac97fc9e18e2b31bef0668ce72c92d /compare-sapphire.sh | |
parent | fc23707dc64abdc3219f72e7cb7992890737d00d (diff) | |
parent | 48711cdf9aed3512b7229e7c8488b3c05ff64ff9 (diff) |
Merge pull request #38 from TwitchPlaysPokemon/master
Diffstat (limited to 'compare-sapphire.sh')
-rwxr-xr-x | compare-sapphire.sh | 11 |
1 files changed, 11 insertions, 0 deletions
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 |