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