My question about a simple instruction code of an ARM micro-controller.
LDR R2, [R1]
In the above instruction I interpret it as: R1 a RAM memory register and R2 is a processor register. What I understand from this was R1 represents the memory content in RAM and R2 is a processor register. So it says: Go to the address of R1 in RAM memory and load its contents to the processor's R2 register. Is that right? R1 is in RAM but R2 is in processor?
