From 22d455dea05e55f0191febe1f3bd8d5cbf61c801 Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Sat, 27 Aug 2016 21:53:50 -0400 Subject: Add ROM comparison scripts (requires baserom-ruby.gba and baserom-sapphire.gba) --- compare-sapphire.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 compare-sapphire.sh (limited to 'compare-sapphire.sh') diff --git a/compare-sapphire.sh b/compare-sapphire.sh new file mode 100755 index 000000000..b4047e81d --- /dev/null +++ b/compare-sapphire.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# Compares baserom-sapphire.gba and pokesapphire.gba + +# create baserom.txt if necessary +if [ ! -f baserom-sapphire.txt ]; then + hexdump -C baserom-sapphire.gba > baserom-sapphire.txt +fi + +hexdump -C pokesapphire.gba > pokesapphire.txt + +diff -u baserom-sapphire.txt pokesapphire.txt | less -- cgit v1.2.3