diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-15 20:12:00 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-15 20:12:00 -0500 |
commit | 01bd8ac94cc11c086167a2a2d8e7b335f033deca (patch) | |
tree | 1aa1b44414c86b7fc4df79a10deafcd13c94f699 /compare.sh | |
parent | 1038ebca5e2638ecbce1052c1dad7474372a7fd5 (diff) |
Move old baserom.gbc 'compare' scripts to tools/
Diffstat (limited to 'compare.sh')
-rwxr-xr-x | compare.sh | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/compare.sh b/compare.sh deleted file mode 100755 index d013a88ab..000000000 --- a/compare.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/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 |