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"?
|
feedback
|
|
You can use:
to get the entire set of flags. You'll see a line like:
which means that the | |||||||
feedback
|