Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disassembly debugging won't find my address

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?

like image 989
Xela Avatar asked Oct 25 '25 22:10

Xela


1 Answers

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.

like image 182
Xela Avatar answered Oct 29 '25 00:10

Xela