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