Page 1 of 1

Debugging how to show registers EAX EBX ECX EDX in hex

Posted: Mon Sep 15, 2014 5:23 pm
by gkourtis
I need to see registers EAX EBX ECX EDX during debugging in hexadecimal. How can I do it ?

Re: Debugging how to show registers EAX EBX ECX EDX in hex

Posted: Mon Sep 15, 2014 5:35 pm
by eranif
Switch to the "Watches" tab, click on the green (+) button and type:

Code: Select all

$eax
You should now have the register in the watches value. Right click it -> Display Format -> Hexa

Eran