Example from Keil: FarMemory, 16MB RAM on ADuC812 Add this declaration before void main (void): far long xyz, ghi ; long abc, def, jkl, mno; Add this in the endless loop: while (1) { abc= xyz++; def= ++ghi; jkl= mno++; } Add all variables to watch, set breakpoint in the loop, and ... enjoy!
VK, Thanks for pointing this out. Take a look at the following knowledgebase article which addresses this issue. Jon
Actually, I saw the article Jon is talking about. It is at: http://www.keil.com/support/docs/2791.htm
Oops. I guess I forgot to post the link. Jon