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.
ldr r1, StartRegs ... StartRegs: .word 0x00000989
ldr r4, =EndRegs ... EndRegs: .word 0xFFFFFFFF
Here I'm doing basic assignments and read write routines forverfication: ldr r1, StartRegs ... StartRegs: .word 0x00000989This code worked fine, but a few lines down the program I try to assign r4 a value just like StartRegs. Instead of being able touse the same format in the previous code I posted, it was neccessary to use this format: ldr r4, =EndRegs ... EndRegs: .word 0xFFFFFFFFIf I didn't use the "=" operator, r4 was never stored with anything. My question is why did I have to use the "=" operator in one part of the code as opposed to another part of the code?