mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
a simple script to compare the baserom and generated rom
This commit is contained in:
parent
3afb9602eb
commit
d3ecd6d10c
11
compare.sh
Executable file
11
compare.sh
Executable file
@ -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
Block a user