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