If I have a local variable, how do I tell in uVision what memory location it is in? I need to monitor that location even when the variable is out of scope, because that location is not being popped off the stack properly. i.e. I have a bug in the code. Thanks.
Sutton
the & operator gives you the address unless it is a register variable.
So just use &variable.