Debugging how to show registers EAX EBX ECX EDX in hex
-
- 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
I need to see registers EAX EBX ECX EDX during debugging in hexadecimal. How can I do it ?
- eranif
- CodeLite Plugin
- Posts: 6375
- 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
Switch to the "Watches" tab, click on the green (+) button and type:
You should now have the register in the watches value. Right click it -> Display Format -> Hexa
Eran
Code: Select all
$eax
Eran
Make sure you have read the HOW TO POST thread