Debugging how to show registers EAX EBX ECX EDX in hex

General questions regarding the usage of CodeLite
gkourtis
CodeLite Enthusiast
Posts: 18
Joined: Sat Jan 25, 2014 9:16 pm
Genuine User: Yes
IDE Question: C++
Contact:

Debugging how to show registers EAX EBX ECX EDX in hex

Post by gkourtis »

I need to see registers EAX EBX ECX EDX during debugging in hexadecimal. How can I do it ?
User avatar
eranif
CodeLite Plugin
Posts: 6373
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

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

Post 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
Make sure you have read the HOW TO POST thread
Post Reply