diff options
Diffstat (limited to 'compare.sh')
-rwxr-xr-x | compare.sh | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/compare.sh b/compare.sh deleted file mode 100755 index 60e8d34..0000000 --- a/compare.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/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 |