I have a library written in C mixed mixed with some assembly for ARM. It used to be compiled for armv6. Now I am trying to upgrade it to armv7. However, there is an interrupt handler which has the instruction stmdb sp!, {pc} which is not allowed in armv7. What would be an equivalent instruction on armv7? I tried str r15, [sp, #-4]! but that doesn't work.
| |||
|
feedback
|
|
There's specific limitations regarding the use of ARM Instruction Set Reference, Specifically, in Thumb[2] there is no So if you're compiling your kernel code (why else do you have/need an interrupt handler if it's not kernel code), check whether you're compiling a Thumb-2 kernel. That said, you're saying you encountered a | |||
|
feedback
|
|
"armv7" is rather generic. What's the actual chip you're using? Are you compiling for ARMv7-M? Try | |||
|
feedback
|