ADC instruction in ASM 8086

前端 未结 4 989
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-20 08:40

When I use ADC for exmaple:

AL = 01 and BL = 02, and CF = 1

when I make this:

ADC AL,BL 

Will <

4条回答
  •  迷失自我
    2021-02-20 09:43

    AL will be 4. ADC means add with carry, so of course the carry is summed in. CF gets set back to 0, since there is no carry out of the addition in question.

提交回复
热议问题