<<< Extended Precision Addition and Subtraction | Index | ADC Instruction, Cont, >>> |
The ADC (add with carry) instruction adds both a source operand and the contents of the Carry flag to a destination operand:
ADC op1, op2 ; op1 += op2, op1 += CF
The instruction formats are the same as for the ADD instruction:
ADC reg, reg ADC mem, reg ADC reg, mem ADC mem, imm ADC reg, imm
<<< Extended Precision Addition and Subtraction | Index | ADC Instruction, Cont, >>> |