Arm/loaddecl3
From ASMBits
arm/loaddecl2Previous
Nextarm/loaddecl4
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
arm/loaddecl2Previous
Nextarm/loaddecl4