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

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
03/02/01 15:06
Read: times


 
#9681 - RE: C-code
Hi Stefan,

any variable was placed in the space defined by the memory model.

It seems, you use LARGE and then variables placed in XDATA.
Better, you use the default model SMALL, which place all variables in the internal data space. This give always the smallest and fastest code:

char register1;

Nevertheless you can specify huge variables to be placed in XDATA:

char xdata bigvar[1000];



Peter


List of 6 messages in thread
TopicAuthorDate
C-code            01/01/70 00:00      
RE: C-code            01/01/70 00:00      
RE: C-code            01/01/70 00:00      
RE: C-code            01/01/70 00:00      
RE: C-code            01/01/70 00:00      
RE: C-code            01/01/70 00:00      

Back to Subject List