;storing data in program memory. AREA LOOKUP_EXAMPLE,READONLY,CODE ENTRY LDR R2,=OUR_FIXED_DATA ;point to OUR_FIXED_DATA LDRB R0,[R2] ;load R0 with the contents of memory pointed to by R2 ADD R1,R1,R0 ;add R0 to R1 HERE B HERE ;stay here forever OUR_FIXED_DATA DCB 0x55,0x33,1,2,3,4,5,6 DCD 0x23222120,0x30 DCW 0x4540,0x50 END