The title says it all: I've got an x86 assembler program which I'm debugging with gdb. Is there a way to print the status of the carry flag inside gdb with, like, "print $cf"?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

You can use:

info registers eflags

to get the entire set of flags. You'll see a line like:

eflags  0x41  [ CF ZF ]

which means that the eflags register is set to 0x41, with the carry and zero flags set.

link|improve this answer
You can also 'print $eflags', or 'print/x $eflags' – Employed Russian Mar 6 '11 at 17:20
thanks a lot! could you help me find the "accept answer" checkbox on this page ^^ ? EDIT AH ok just the big check mark – Hinton Mar 10 '11 at 19:39
@Employed Russian: If you post this as an answer, I'll vote you up too – Hinton Mar 10 '11 at 19:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.