We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hello, I am writting a function, which involves complicated algorithm, I want to have a lot of general purpose registers to keep the routine speed. I have read some article that r13-r15 are special registers, but can be used as general purpose registers. Can I do it like this stmfd sp!, {r4-r15,lr}:: ldmfd sp!, {r4-r15,pc}Thank you very much!