summaryrefslogtreecommitdiff
path: root/utils/compare.sh
blob: 44e07712360513263196d199803b2e143029b6c1 (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