Presentation is loading. Please wait.

Presentation is loading. Please wait.

How Instruction Affect the Flags

Similar presentations


Presentation on theme: "How Instruction Affect the Flags"— Presentation transcript:

1 How Instruction Affect the Flags

2 Processor executes instruction
Flags are affected Some instructions do not affect while some do Instruction Affect Flags MOV/XCHG none ADD/SUB all INC/DEC all except CF NEG all

3 Example: Show how the flags register affected by the addition of 38H and 2FH
Sol: MOV BH,38H ;BH=38H ADD BH,2FH ;add 2F to BH, now BH=67H CF = 0 since there is no carry beyond d7 PF = 0 since there is an odd number of 1s in the result AF = 1 since there is a carry from d3 to d4 ZF = 0 since the result is not zero SF = 0 since d7 of the result is zero

4 Example Show how the flags register affected by MOV AL,9CH MOV DH,64H
ADD AL,DH

5 Sol CF = 1 since there is a carry beyond d7 PF = 1 since there is an even number of 1s in the result AF = 1 since there is a carry from d3 to d4 ZF = 1 since the result is zero SF = 0 since d7 of the result is zero

6 Example Show how the flags register affected by MOV AX,34F5H
ADD AX,95EBH MOV BX,AAAAH ADD BX,5556H (You need to solve both as an assignment)

7 DEBUG Flag symbol Status Flags Set (1) Symbol Clear (0) Symbol CF
CY (carry) NC (no carry) PF PE (even parity) PO (odd parity) AF AC (auxiliary carry) NA (no auxiliary carry) ZF ZR (zero) NZ (nonzero) SF NG (negative) PL (plus) OF OV (overflow) NV (no overflow) Control Flags DF DN (down) UP (up) IF EI (enable interrupt) DI (disable interrupt)


Download ppt "How Instruction Affect the Flags"

Similar presentations


Ads by Google