mirror of
https://github.com/pret/pokeyellow.git
synced 2026-05-09 04:11:32 -05:00
11 lines
247 B
Bash
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 |