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

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
11/09/04 14:14
Read: times


 
#80786 - RE: Keil and pointer to external bus
Responding to: ???'s previous message
"How can i set the address of a pointer to a specific address in external memory area? "

You're going to kick yourself:

unsigned char xdata *display;

display=(unsigned char xdata *)ADDRESS;

*display=data;

or even easier use the XBYTE macro in absacc.h:

XBYTE[ADDRESS]=data;

List of 6 messages in thread
TopicAuthorDate
Keil and pointer to external bus            01/01/70 00:00      
   RE: Keil and pointer to external bus            01/01/70 00:00      
   RE: Keil and pointer to external bus            01/01/70 00:00      
   RE: Keil and pointer to external bus            01/01/70 00:00      
      oh, pointer            01/01/70 00:00      
   RE: Keil and pointer to external bus            01/01/70 00:00      

Back to Subject List