mirror of
https://github.com/pret/pokeruby.git
synced 2025-02-17 03:37:46 +00:00
8 lines
302 B
Bash
Executable File
8 lines
302 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.gba > baserom_de.dump
|
|
$OBJDUMP $OPTIONS pokeruby_de.gba > pokeruby_de.dump
|
|
diff -u baserom_de.dump pokeruby_de.dump
|