POINTER RN R2 ARRAY1 RN R1 AREA EXAMPLE_6_17, CODE, READONLY ENTRY LDR ARRAY1, = MYDATA LDRB R4,[ARRAY1] ;load POINTER location of ;ARRAY1 to R4 (R4= 0x45) MOV POINTER,#1 ;POINTER = 1 to point to ;location 1 of array LDRB R5,[ARRAY1,POINTER] ; Load POINTER location of ARRAY1 to R5 MOV POINTER,#2 ;POINTER = 2 to point to ;location 2 of array LDRB R6,[ARRAY1,POINTER] ; load POINTER location of ARRAY1 to R6 HERE B HERE MYDATA DCD 0x45,0x2489ACF5 END