Everytime I highlight a variable or function and select "Go To Definition Of" it gives me an error that Browse Information does not exist. I have Browse Information selected in the output tab.
Does this feature exist in uVision?
What say you?
Correct - pragma ASM requires pragma SRC
"I guess I have to use Find in Files to find every variable initiaization and function definition."
Yes, that's another reason to avoid inline assembler unless absolutely necessary!
Note that it also means that you won't be able to do 'C' source-level debugging on any of those files...
Might be worth reviewing the use of inline assembler and removing it wherever possible - or, at least, creating separate assembler modules for any bits that really do need to be in assembler...
Yes, I did not write this code and plan to redo the whole project in C at a later date.
Thanks fo your help