mirror of https://github.com/pret/pokeemerald.git
add asmdiff.sh comparison script
This commit is contained in:
parent
d9603769f3
commit
0fe97e838e
|
@ -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 pokeemerald.gba > pokeemerald.dump
|
||||||
|
diff baserom.dump pokeemerald.dump
|
Loading…
Reference in New Issue