I would like to add the value stored in dx:ax with the value in cx:bx.
add ax, bx
add dx, cx
In this way the result will be in dx:ax? or do I need to pay attention to Carry flags using adc
?
I would like to add the value stored in dx:ax with the value in cx:bx.
add ax, bx
add dx, cx
In this way the result will be in dx:ax? or do I need to pay attention to Carry flags using adc
?