C51 v7.20, Dallas DS80C400 in contiguous mode. (not a regular 8051 memory architecture) Using the LARGE memory model, is it possible to get the compiler to automatically assign variables to the HDATA class without specifying "far" everywhere?
char x; // goes to xdata by default
char far x;
const char code x[]={1,2,3,4};
const char far x[]={1,2,3,4};
printf("hello");