mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
539608859b
* Start Z2SceneMgr * Various Fixes After Merge Co-authored-by: Pheenoh <pheenoh@gmail.com>
8 lines
299 B
Bash
8 lines
299 B
Bash
#!/bin/bash
|
|
|
|
OBJDUMP="$DEVKITPPC/bin/powerpc-eabi-objdump -D -bbinary -EB -mpowerpc -M gekko"
|
|
OPTIONS="--start-address=$(($1)) --stop-address=$(($2+0x4))"
|
|
$OBJDUMP $OPTIONS baserom.dol > baserom.dump
|
|
$OBJDUMP $OPTIONS build/dolzel2/main.dol > main.dump
|
|
diff -u --color=always baserom.dump main.dump
|