mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 11:37:40 +01:00
add asmdiff.sh comparison script
This commit is contained in:
parent
d9603769f3
commit
0fe97e838e
7
asmdiff.sh
Normal file
7
asmdiff.sh
Normal 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 pokeemerald.gba > pokeemerald.dump
|
||||||
|
diff baserom.dump pokeemerald.dump
|
Loading…
Reference in New Issue
Block a user