mirror of
https://github.com/pret/pokeruby.git
synced 2024-11-23 13:09:40 +00:00
12 lines
298 B
Bash
Executable File
12 lines
298 B
Bash
Executable File
#!/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
|