mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-09-26 13:32:48 -04: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 |