blob: 137db6705d05ff9e2f4a83c48cd40f9ef17f1fbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
# 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
|