ADC instruction in ASM 8086

前端 未结 4 1063
佛祖请我去吃肉
佛祖请我去吃肉 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:17

    It will be 4. ADC (add with carry) adds in an extra 1 if the carry flag (CF) is 1. See the full description of the opcode here.

提交回复
热议问题