POINTER RN R2 ARRAY1 RN R1 AREA EXAMPLE_6_16, 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 ;(R5 = 0x24) MOV POINTER,#2 ;POINTER = 2 to point to location 2 of array LDRB R6,[ARRAY1,POINTER] ;load POINTER location of ARRAY1 to R6 ;(R6 = 0x18) HERE B HERE MYDATA DCB 0x45,0x24,0x18,0x63 END