blob: b52696dbeda6ec627c494e5eb3e6ab897fbd9d66 (
plain)
1
2
3
4
5
6
7
8
9
10
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
|