Move old baserom.gbc 'compare' scripts to tools/

This commit is contained in:
Remy Oukaour
2017-12-15 20:12:00 -05:00
parent 1038ebca5e
commit 01bd8ac94c
2 changed files with 0 additions and 0 deletions

11
tools/compare.sh Executable file
View 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