diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-07-08 17:34:41 -0400 |
---|---|---|
committer | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-07-08 17:34:41 -0400 |
commit | ca09233c9eca4c6b9b0ccfba436dcd7e3b3e669c (patch) | |
tree | 4f7596be6169491f801756fdda59d6b51a751afe /compare.sh | |
parent | 116b3b251931b0cd973d5d3f312fa32c2b16b197 (diff) |
Build files in maps/
Diffstat (limited to 'compare.sh')
-rw-r--r-- | compare.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/compare.sh b/compare.sh new file mode 100644 index 0000000..b52696d --- /dev/null +++ b/compare.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# Compares baserom.gb and pokegold-spaceworld.gb + +# create baserom.txt if necessary +if [ ! -f baserom.txt ]; then + hexdump -C baserom.gb > baserom.txt +fi + +hexdump -C pokegold-spaceworld.gb > pokegold-spaceworld.txt + +diff -u baserom.txt pokegold-spaceworld.txt | less
\ No newline at end of file |