summaryrefslogtreecommitdiff
path: root/compare.sh
diff options
context:
space:
mode:
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