pokegold-spaceworld/compare.sh
2018-07-08 17:34:41 -04:00

11 lines
279 B
Bash

#!/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