The carryflag tag has no wiki summary.
12
votes
2answers
366 views
Efficient 128-bit addition using carry flag
I'm using a 128 bit integer counter in the very inner loops of my C++ code. (Irrelevant background: The actual application is evaluating finite difference equations on a regular grid, which involves ...
10
votes
12answers
520 views
What actually happens when a Byte overflows?
What actually happens when a Byte overflows?
Say we have
byte byte1 = 150; // 10010110
byte byte2 = 199; // 11000111
If we now do this addition
byte byte3 = byte1 + byte2;
I think we'll end ...
2
votes
2answers
65 views
carry/overflow & subtraction in x86
I'm trying to wrap my head around overflow & carry flags in x86.
As I understand it, for addition of signed 2's complement numbers, the flags can only be generated in one of four ways (my ...
1
vote
1answer
81 views
Binary addition/subtraction
I am having a bit of trouble understanding Carry Flag (CF) and Overflow Flag (OF).
Here are some sample problems I am working on:
1. 1011 1111 2. 1111 0111 3. 0111 1110 --> 0111 1110
...
0
votes
1answer
592 views
gdb with assembler: Print status of carry flag
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"?
0
votes
2answers
655 views
How I make an addition of two numbers of 32 bits in Assembly using ADC?
How I make an addition of two numbers of 32 bits in Assembly using ADC?