mirror of https://github.com/pret/pokecrystal.git
a simple script to compare the baserom and generated rom
This commit is contained in:
parent
3afb9602eb
commit
d3ecd6d10c
|
@ -0,0 +1,11 @@
|
|||
#!/bin/bash
|
||||
# Compares baserom.gbc and pokecrystal.gbc
|
||||
|
||||
# create baserom.txt if necessary
|
||||
if [ ! -f baserom.txt ]; then
|
||||
hexdump -C baserom.gbc >> baserom.txt
|
||||
fi
|
||||
|
||||
hexdump -C pokecrystal.gbc >> pokecrystal.txt
|
||||
|
||||
diff baserom.txt pokecrystal.txt | less
|
Loading…
Reference in New Issue