
$mod51
org 00h
jmp start

get:	db '0cf','12'

org 30h
start:
mov a,#01h
mov dptr,#get
movc a,@a+dptr
mov get,a
jmp start
end
