I took a giant project and cut it down to a base functionality for another 8051 project. I know that there are many unused variables as a result. Is there a command / option to highlight unused variables in the Keil compiler?
Thanks...
http://www.keil.com/support/man/docs/uv3/uv3_ut_sourcebrowser.htm
Sort by the number of 'Uses'; A definition counts as one 'Use', so anything with only 1 'Use' is defined but not otherwise referenced...
Thanks Andy, that works great!