Arm/loaddecl3

From ASMBits

Consider the assembly code snippet below:

ldr r0, =Data
ldr r1, [r0]
ldr r2, [r1]
ldr r3, [r2]


Declare some data in memory such that the result of running the code is:
  • r3 = 0x12345
  • r0, r1, and r2 are all different


Sample Input

[None]

Sample Output

r3=0x12345

Write your solution here

Upload a source file...