diff options
Diffstat (limited to 'tools/compare.sh')
-rwxr-xr-x | tools/compare.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/compare.sh b/tools/compare.sh new file mode 100755 index 000000000..d013a88ab --- /dev/null +++ b/tools/compare.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# Compares baserom.gbc and pokecrystal.gbc + +# create baserom.txt if necessary +if [ ! -f baserom.txt ]; then + hexdump -C baserom.gbc > baserom.txt +fi + +hexdump -C pokecrystal.gbc > pokecrystal.txt + +diff -u baserom.txt pokecrystal.txt | less |