blob: 6ef030bbad68c90592a978866cfbaeb1454fe3dc (
plain)
1
2
3
4
5
6
7
8
9
10
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
|