Update Makefile rules to correctly detect changes in berry fix mb

This commit is contained in:
PikalaxALT
2019-10-04 13:19:45 -04:00
parent 1f6f5f369b
commit 136464ce94
5 changed files with 56 additions and 41 deletions
Executable
+7
View File
@@ -0,0 +1,7 @@
#!/bin/bash
OBJDUMP="$DEVKITARM/bin/arm-none-eabi-objdump -D -bbinary -marmv4t -Mforce-thumb"
OPTIONS="--start-address=$(($1)) --stop-address=$(($1 + $2))"
$OBJDUMP $OPTIONS baserom.gba > baserom.dump
$OBJDUMP $OPTIONS pokefirered.gba > pokefirered.dump
diff -u baserom.dump pokefirered.dump