mirror of
https://github.com/pret/pokeruby.git
synced 2025-01-19 03:03:12 +00:00
Add ROM comparison scripts (requires baserom-ruby.gba and baserom-sapphire.gba)
This commit is contained in:
parent
67a057d573
commit
22d455dea0
11
compare-ruby.sh
Executable file
11
compare-ruby.sh
Executable file
@ -0,0 +1,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
|
11
compare-sapphire.sh
Executable file
11
compare-sapphire.sh
Executable file
@ -0,0 +1,11 @@
|
||||
#!/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
|
Loading…
x
Reference in New Issue
Block a user