mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-04-21 17:57:13 -05:00
11 lines
279 B
Bash
11 lines
279 B
Bash
#!/bin/sh
|
|
# Compares baserom.gb and pokegold-spaceworld.gb
|
|
|
|
# create baserom.txt if necessary
|
|
if [ ! -f baserom.txt ]; then
|
|
hexdump -C baserom.gb > baserom.txt
|
|
fi
|
|
|
|
hexdump -C pokegold-spaceworld.gb > pokegold-spaceworld.txt
|
|
|
|
diff -u baserom.txt pokegold-spaceworld.txt | less |