diff options
author | Rafaël Carré <rafael.carre@gmail.com> | 2010-01-24 15:04:21 +0000 |
---|---|---|
committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-01-24 15:04:21 +0000 |
commit | b2323be33b5a89cc244d4488b21263a359aced96 (patch) | |
tree | 112b2df776d9e4ca404237c176f56433a4136471 /firmware/target/arm/pnx0101 | |
parent | fd13e09c4f79f9a26c76c160b007513cacc8b818 (diff) |
ARM: lr addresses the next instruction after the failing one in undefined instruction vector
Substract 4 before passing the argument to UIE so the correct address is displayed
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24321 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/pnx0101')
-rw-r--r-- | firmware/target/arm/pnx0101/crt0-pnx0101.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/pnx0101/crt0-pnx0101.S b/firmware/target/arm/pnx0101/crt0-pnx0101.S index d785d09a3b..c8c4232a3a 100644 --- a/firmware/target/arm/pnx0101/crt0-pnx0101.S +++ b/firmware/target/arm/pnx0101/crt0-pnx0101.S @@ -174,7 +174,7 @@ vectors: in UIE. */ undef_instr_handler: - mov r0, lr + sub r0, lr, #4 mov r1, #0 b UIE |