mirror of
https://github.com/pret/pokeruby.git
synced 2024-11-23 04:59:53 +00:00
8 lines
338 B
Bash
Executable File
8 lines
338 B
Bash
Executable File
#!/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_de_debug.gba > baserom_de_debug.dump
|
|
$OBJDUMP $OPTIONS pokeruby_de_debug.gba > pokeruby_de_debug.dump
|
|
diff -u baserom_de_debug.dump pokeruby_de_debug.dump
|