mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 11:37:40 +01:00
8 lines
290 B
Bash
8 lines
290 B
Bash
|
#!/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
|