Hi people, I've some troubles with some variables declaration. I'm using the old Keil compîler C51 V5.50. When writing :
U8 u8CommandIndex=0;
xdata U8 u8CommandIndex=0;
Exactly as Eric suggests! The XRAM on the 66x devices is NOT enabled by default. You must turn this memory on before you begin using it. Refer to the following knowledgebase article: http://www.keil.com/support/docs/1978.htm Jon
"The XRAM on the 66x devices is NOT enabled by default. You must turn this memory on before you begin using it." As I've said before: the Compiler & Linker setup options (usually) simply inform the tools about your target; they do not generate any code which may be necessary to configure the hardware - you have to write that yourself!! http://www.keil.com/forum/docs/thread2252.asp