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