Hi,
I am new to assembly language. I want to store content of register(R0-R15) to specified memory location. e.g R0 content to 0x40000000 R1 content to 0x40000001
how to do this? Plz could any one tell me ?
Regards, Smitha
Please read the manual!!!
Google search for the "Technical Reference Manual" for the architecture that your controller has. Read the instruction set.
Remember the registers are 32-bit (ie take 4-bytes)
You'll need to hold the destination address for memory in one of the registers, and STM expects aligned writes