Reputation: 2382
I'm having an issue where I try and debug my application in Visual Studio 2012.
I press Ctrl + G to search for an address in the top address bar. I insert my address, for example, 00C44873, press enter and it errors back:
The specified address cannot be displayed. invalid octal digit.
Am I doing something wrong?
Upvotes: 3
Views: 1116
Reputation: 2382
The answer is to append an "h" to your hexadecimal number, like in assembly.
For example, 00C44873h
. This now allows Visual Studio 2012 to search for this address.
Upvotes: 5