diff options
author | entrpntr <entrpntr@gmail.com> | 2020-03-22 18:37:40 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-03-22 18:37:40 -0400 |
commit | db8db97aa341f52174a14d415ca680656f0bcf64 (patch) | |
tree | ce6b343e20e393e929ea0d8509e69b7c04ae83dd /compare-gold.sh | |
parent | 15890237493f06d266a3197357d42edf883355e2 (diff) |
Clean up makefile, submodules, root dir; Python 3 compatibility.
Diffstat (limited to 'compare-gold.sh')
-rwxr-xr-x | compare-gold.sh | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/compare-gold.sh b/compare-gold.sh deleted file mode 100755 index e75cb743..00000000 --- a/compare-gold.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# Compares baserom-gold.gbc and pokegold.gbc - -# create baserom-gold.txt if necessary -if [ ! -f baserom-gold.txt ]; then - hexdump -C baserom-gold.gbc > baserom-gold.txt -fi - -hexdump -C pokegold.gbc > pokegold.txt - -diff -u baserom-gold.txt pokegold.txt | less |