ARM Assembly storing registers to memory

后端 未结 1 1079
予麋鹿
予麋鹿 2021-01-16 10:17

I have the following simple program that performs an operation on two vectors; A and B (which are stored in memory) and saves the result back into memory pointed to by vecto

相关标签:
1条回答
  • 2021-01-16 11:06

    I figured what the problem was. I'm using Keil simulator and apparently I had to manually map the memory segments that I'd be writing to. I did this by clicking the Debug -> Memory Map... menu while the program was running and then I mapped a segment range and gave it Read, Write, Execute privileges.

    enter image description here

    0 讨论(0)
提交回复
热议问题