I am trying to copy data from LUT from one location and copying it
to another location. Here is the code
AREA Program, CODE, READONLY
EXPORT __main
ENTRY
__main
ldr r0, =SourceL ; Address of SourceL
ldr r1, =DestinationL ; Address of DestinationL
ldr r2, [r0] ; r2 contains data@SourceL
ldr r3, [r1] ; r3 contains data@DestinationL
mov r4, #245
str r4, [r1]
SWI &11
↧