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