
  mov dptr,#some_table   ; init table pointer
  clr A                  ; offset into table
  movc A,@A+dptr         ; read table
  mov SOME_STORAGE,A     ; store the value you've read away
  clr A                  ; reinit table offset

some_table:
  dc.b 01ah,064h,01h
