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