pokeyellow/compare.sh
2015-08-09 16:42:07 -04:00

11 lines
247 B
Bash

#!/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