diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2020-06-14 16:08:21 -0400 |
---|---|---|
committer | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2020-06-14 16:08:21 -0400 |
commit | bc143a695d54f7ac663b2b3f1ea98c53b21842e2 (patch) | |
tree | 68540a243b212f5657fc4a9ddbede12e89611a3f /compare.sh | |
parent | e2eb17dcbd8f9021b7e9fc805c8c03fac6b3b255 (diff) |
Initial work on pokemon_summary_screen.c
Diffstat (limited to 'compare.sh')
-rw-r--r-- | compare.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/compare.sh b/compare.sh new file mode 100644 index 000000000..86db204ee --- /dev/null +++ b/compare.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# Compares baserom.gba and pokefirered.gba + +# create baserom.txt if necessary +if [ ! -f baserom.txt ]; then + hexdump -C baserom.gba > baserom.txt # can create an empty baserom.txt if no baserom.gba +fi + +hexdump -C pokefirered.gba > pokefirered.txt + +diff -u baserom.txt pokefirered.txt | less |