shithub: pokecrystal

Download patch

ref: d3ecd6d10c61775e2ad384d37f0bca45c4b0c6fa
parent: 3afb9602ebce53fa14c7360a22fb8b6ae5e4f557
author: Bryan Bishop <[email protected]>
date: Mon May 14 07:05:22 EDT 2012

a simple script to compare the baserom and generated rom

--- /dev/null
+++ b/compare.sh
@@ -1,0 +1,11 @@
+#!/bin/bash
+# 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 baserom.txt pokecrystal.txt | less