Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
04/17/02 21:24
Read: times


 
#21862 - RE: help with memory mappind and LCD´s m
You have it all already. The only 16 bit regsiter in an 8052 is the DPTR, move a 16 bit address into that, say MOVX @DPTR,A and the accumulator contents get moved to the location pointed to by the DPTR.

How do you set the DPTR ?
Either directly as MOV DPTR,#0FFFEH
or
MOV DPH,#0FFh
MOV DPL,#0FEh

Since DPH (DPTR high byte) and DPL (DPTR low byte are 8 bit registers, you can (witrh care) manipulate 16 bit numbers in your code.

Steve


List of 13 messages in thread
TopicAuthorDate
help with memory mappind and LCD´s msg            01/01/70 00:00      
RE: help with memory mappind and LCD´s m            01/01/70 00:00      
RE: help with memory mappind and LCD´s m            01/01/70 00:00      
RE: help with memory mappind and LCD´s m            01/01/70 00:00      
RE: help with memory mappind and LCD´s m            01/01/70 00:00      
RE: help with memory mappind and LCD´s m            01/01/70 00:00      
RE: help with memory mappind and LCD´s m            01/01/70 00:00      
RE: help with memory mappind and LCD´s m            01/01/70 00:00      
RE: help with memory mappind and LCD´s m            01/01/70 00:00      
RE: help with memory mappind and LCD´s m            01/01/70 00:00      
RE: help with memory mappind and LCD´s m            01/01/70 00:00      
RE: help with memory mappind and LCD´s m            01/01/70 00:00      
RE: help with memory mappind and LCD´s m            01/01/70 00:00      

Back to Subject List