diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2019-07-29 10:58:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-29 10:58:36 -0400 |
commit | b8393b3a799f92e7064c266600607d98f6baf4d9 (patch) | |
tree | 6ef2187216a7dd1c50738a0ed33be25191cd7f70 /asmdiff.sh | |
parent | 3f477dae36c99bcb03a38be251dbef2f7e344ebc (diff) | |
parent | 61c433d5c3c898921adecb09b2db7df30ac90047 (diff) |
Merge pull request #751 from pret/revert-colordiff
Revert migration to `colordiff` in asmdiff.sh
Diffstat (limited to 'asmdiff.sh')
-rwxr-xr-x | asmdiff.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asmdiff.sh b/asmdiff.sh index 414a43826..1172b64d5 100755 --- a/asmdiff.sh +++ b/asmdiff.sh @@ -4,4 +4,4 @@ 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 pokeruby.gba > pokeruby.dump -colordiff -u baserom.dump pokeruby.dump +diff -u baserom.dump pokeruby.dump |