Initial work on pokemon_summary_screen.c

This commit is contained in:
luckytyphlosion
2020-06-14 16:08:21 -04:00
parent e2eb17dcbd
commit bc143a695d
10 changed files with 570 additions and 690 deletions
+11
View File
@@ -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