Move old baserom.gbc 'compare' scripts to tools/
This commit is contained in:
11
tools/compare.sh
Executable file
11
tools/compare.sh
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
# 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 -u baserom.txt pokecrystal.txt | less
|
Reference in New Issue
Block a user