mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
12 lines
249 B
Bash
Executable File
12 lines
249 B
Bash
Executable File
#!/bin/sh
|
|
# Compares baserom.gbc and pokecrystal.gbc
|
|
|
|
# create baserom.txt if necessary
|
|
if [ ! -f baserom.txt ]; then
|
|
hexdump -C baserom.gbc > baserom.txt
|
|
fi
|
|
|
|
hexdump -C pokecrystal.gbc > pokecrystal.txt
|
|
|
|
diff -u baserom.txt pokecrystal.txt | less
|