summaryrefslogtreecommitdiff
path: root/compare.sh
diff options
context:
space:
mode:
authorluckytyphlosion <alan.rj.huang@gmail.com>2015-08-09 16:42:07 -0400
committerluckytyphlosion <alan.rj.huang@gmail.com>2015-08-09 16:42:07 -0400
commitaaae80f88f73ef9cf3d3b1a697b609cb2cc91c5c (patch)
tree7cdeb6180eb7eedd98231250e05aa0c41c3f9636 /compare.sh
parent19c517bca455c10e7cba6699084b8cbeb8cc8137 (diff)
Fix typos up to end of home/audio.asm
Diffstat (limited to 'compare.sh')
-rw-r--r--compare.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/compare.sh b/compare.sh
new file mode 100644
index 00000000..6ef030bb
--- /dev/null
+++ b/compare.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+# Compares baserom.gbc and pokeyellow.gbc
+
+# create baserom.txt if necessary
+if [ ! -f baserom.txt ]; then
+ hexdump -C baserom.gbc > baserom.txt
+fi
+
+hexdump -C pokeyellow.gbc > pokeyellow.txt
+
+diff -u baserom.txt pokeyellow.txt | less \ No newline at end of file