blob: e75cb7430a2830eaa1e8c0f35c1a34a19a733f11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# Compares baserom-gold.gbc and pokegold.gbc
# create baserom-gold.txt if necessary
if [ ! -f baserom-gold.txt ]; then
hexdump -C baserom-gold.gbc > baserom-gold.txt
fi
hexdump -C pokegold.gbc > pokegold.txt
diff -u baserom-gold.txt pokegold.txt | less
|