mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-06 05:35:23 -05:00
8 lines
284 B
Bash
Executable File
8 lines
284 B
Bash
Executable File
#!/bin/bash
|
|
|
|
OBJDUMP="./tools/binutils/bin/arm-none-eabi-objdump -D -bbinary -marmv4t -Mforce-thumb"
|
|
OPTIONS="--start-address=$1 --stop-address=$2"
|
|
$OBJDUMP $OPTIONS baserom.gba > baserom.dump
|
|
$OBJDUMP $OPTIONS pokefirered.gba > pokefirered.dump
|
|
diff -u baserom.dump pokefirered.dump
|