// ArrayAccess.s: This program will continually access the array .data A: WORD 100 WORD 1 WORD 21 .text MOV R1, #0 MOV R2, #1 Loop: MOV R3, A ADD R1, R1, R3 MOV R0, Loop ADD R0, R0, R2 MOV Loop, R0 JMP Loop