Quantcast
Channel: Keil Discussion Forum RSS Feed
Viewing all articles
Browse latest Browse all 3049

ARM: LPC2148 assembly code. Trying to read data from read-write memory but Label showing blank data (6 Replies)

$
0
0
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

Viewing all articles
Browse latest Browse all 3049

Trending Articles