8086 Assembler Tutorial for Beginners (Part 6)
Arithmetic and Logic Instructions
Most Arithmetic and Logic Instructions affect the processor status register (or Flags)
As you may see there are 16 bits in this register, each bit is called a flag and can take a value of 1 or 0.
There are 3 groups of instructions.
First group: ADD, SUB,CMP, AND, TEST, OR, XOR
These types of operands are supported:
memory: [BX], [BX+SI+7], variable, etc...
immediate: 5, -24, 3Fh, 10001101b, etc...
After operation between operands, result is always stored in first operand. CMP and TEST instructions affect flags only and do not store a result (these instruction are used to make decisions during program execution).
These instructions affect these flags only:
CF, ZF, SF, OF, PF, AF.
Second group: MUL, IMUL, DIV, IDIV
These types of operands are supported:
memory: [BX], [BX+SI+7], variable, etc...
MUL and IMUL instructions affect these flags only:
CF, OF
When result is over operand size these flags are set to 1, when result fits in operand size these flags are set to 0.
For DIV and IDIV flags are undefined.
Third group: INC, DEC, NOT, NEG
These types of operands are supported:
memory: [BX], [BX+SI+7], variable, etc...
INC, DEC instructions affect these flags only:
ZF, SF, OF, PF, AF.
NOT instruction does not affect any flags!
NEG instruction affects these flags only:
CF, ZF, SF, OF, PF, AF.
Assembly Language : 8086 Assembler Tutorial Part 12
Assembly Language : 8086 Assembler Tutorial Part 11
Assembly Language : 8086 Assembler Tutorial Part 10
Assembly Language : 8086 Assembler Tutorial Part 9
Assembly Language : 8086 Assembler Tutorial Part 8
Assembly Language : 8086 Assembler Tutorial Part 7
Assembly Language : 8086 Assembler Tutorial Part 6
Assembly Language : 8086 Assembler Tutorial Part 5
Assembly Language : 8086 Assembler Tutorial Part 4
Assembly Language : 8086 Assembler Tutorial Part 3
Assembly Language : 8086 Assembler Tutorial Part 2
Assembly Language : 8086 Assembler Tutorial Part 1
Assembly Language Programming : Complete 8086 instruction sets
Assembly Language Programming : I/O ports - IN/OUT instructions
Assembly Language programming : Emu8086 Assembler Compiling and MASM / TASM compatibility
Assembly Language - string convert - Lowercase , Uppercase
for programming : the language of Number
Assembly Language - Complete Instruction Set and Instruction Timing of 8086 microprocessors
Assembly Language programming : A list of emulator supported interrupts
Assembly Language Programming : Emu8086 Overview, Using Emulator, Virtual Drives
Assembly Language Programming : All about Memory - Global Memory Table and Custom Memory Map
buy me a cup of coffee
buy me a cup of coffee
Need More Detail ? contact me !!
Send me any small amount of money is welcome.
___________________________________________
Don't know how to send money ? Click here for detail about Paypal account.
About PayPal Payment Methods
What type of PayPal accounts is better.
Don't have money? OK! Here is another way to get the program.
how to get my program - Free of charge
Arithmetic and Logic Instructions
Most Arithmetic and Logic Instructions affect the processor status register (or Flags)
As you may see there are 16 bits in this register, each bit is called a flag and can take a value of 1 or 0.
- Carry Flag (CF) - this flag is set to 1 when there is
an unsigned overflow.
For example when you add bytes 255 + 1 (result is not in range 0...255).
When there is no overflow this flag is set to 0.
- Zero Flag (ZF) - set to 1 when result is zero.
For none zero result this flag is set to 0.
- Sign Flag (SF) - set to 1 when result is negative.
When result is positive it is set to 0. Actually this flag
take the value of the most significant bit.
- Overflow Flag (OF) - set to 1 when there is a signed overflow.
For example, when you add bytes 100 + 50 (result is not in range -128...127).
- Parity Flag (PF) - this flag is set to 1 when there is even number
of one bits in result, and to 0 when there is odd
number of one bits. Even if result is a word only 8 low
bits are analyzed!
- Auxiliary Flag (AF) - set to 1 when there is an unsigned overflow
for low nibble (4 bits).
- Interrupt enable Flag (IF) - when this flag is set to 1 CPU reacts to
interrupts from external devices.
- Direction Flag (DF) - this flag is used by some instructions to process
data chains, when this flag is set to 0 - the processing is done forward,
when this flag is set to 1 the processing is done backward.
There are 3 groups of instructions.
First group: ADD, SUB,CMP, AND, TEST, OR, XOR
These types of operands are supported:
REG, memoryREG: AX, BX, CX, DX, AH, AL, BL, BH, CH, CL, DH, DL, DI, SI, BP, SP.
memory, REG
REG, REG
memory, immediate
REG, immediate
memory: [BX], [BX+SI+7], variable, etc...
immediate: 5, -24, 3Fh, 10001101b, etc...
After operation between operands, result is always stored in first operand. CMP and TEST instructions affect flags only and do not store a result (these instruction are used to make decisions during program execution).
These instructions affect these flags only:
CF, ZF, SF, OF, PF, AF.
- ADD - add second operand to first.
- SUB - Subtract second operand to first.
- CMP - Subtract second operand from first for flags only.
- AND - Logical AND between all bits of two operands. These rules
apply:
1 AND 1 = 1
As you see we get 1 only when both bits are 1.
1 AND 0 = 0
0 AND 1 = 0
0 AND 0 = 0
- TEST - The same as AND but for flags only.
- OR - Logical OR between all bits of two operands. These rules
apply:
1 OR 1 = 1
As you see we get 1 every time when at least one of the bits is 1.
1 OR 0 = 1
0 OR 1 = 1
0 OR 0 = 0
- XOR - Logical XOR (exclusive OR) between all bits of two operands.
These rules apply:
1 XOR 1 = 0
As you see we get 1 every time when bits are different from each other.
1 XOR 0 = 1
0 XOR 1 = 1
0 XOR 0 = 0
Second group: MUL, IMUL, DIV, IDIV
These types of operands are supported:
REGREG: AX, BX, CX, DX, AH, AL, BL, BH, CH, CL, DH, DL, DI, SI, BP, SP.
memory
memory: [BX], [BX+SI+7], variable, etc...
MUL and IMUL instructions affect these flags only:
CF, OF
When result is over operand size these flags are set to 1, when result fits in operand size these flags are set to 0.
For DIV and IDIV flags are undefined.
- MUL - Unsigned multiply:
when operand is a byte:
AX = AL * operand.when operand is a word:
(DX AX) = AX * operand. - IMUL - Signed multiply:
when operand is a byte:
AX = AL * operand.when operand is a word:
(DX AX) = AX * operand. - DIV - Unsigned divide:
when operand is a byte:
AL = AX / operand
AH = remainder (modulus). .when operand is a word:
AX = (DX AX) / operand
DX = remainder (modulus). . - IDIV - Signed divide:
when operand is a byte:
AL = AX / operand
AH = remainder (modulus). .when operand is a word:
AX = (DX AX) / operand
DX = remainder (modulus). .
Third group: INC, DEC, NOT, NEG
These types of operands are supported:
REGREG: AX, BX, CX, DX, AH, AL, BL, BH, CH, CL, DH, DL, DI, SI, BP, SP.
memory
memory: [BX], [BX+SI+7], variable, etc...
INC, DEC instructions affect these flags only:
ZF, SF, OF, PF, AF.
NOT instruction does not affect any flags!
NEG instruction affects these flags only:
CF, ZF, SF, OF, PF, AF.
- NOT - Reverse each bit of operand.
- NEG - Make operand negative (two's complement). Actually it reverses each bit of operand and then adds 1 to it. For example 5 will become -5, and -2 will become 2.
emu8086 is better than NASM, MASM or TASM
Tag: assembly language, assembly instruction, assembly programming, assembly code, assembly guide, emu8086, 8086 microprocessors instruction, instruction sets, instruction sets for 8086, instruction complete set, instruction set complete for 8086, assembly language instruction set, complete 8086 instruction sets microprocessors, complete instruction timing and instruction sets for 8086 microprocessors, 8086 Assembler, TutorialAssembly Language : 8086 Assembler Tutorial Part 12
Assembly Language : 8086 Assembler Tutorial Part 11
Assembly Language : 8086 Assembler Tutorial Part 10
Assembly Language : 8086 Assembler Tutorial Part 9
Assembly Language : 8086 Assembler Tutorial Part 8
Assembly Language : 8086 Assembler Tutorial Part 7
Assembly Language : 8086 Assembler Tutorial Part 6
Assembly Language : 8086 Assembler Tutorial Part 5
Assembly Language : 8086 Assembler Tutorial Part 4
Assembly Language : 8086 Assembler Tutorial Part 3
Assembly Language : 8086 Assembler Tutorial Part 2
Assembly Language : 8086 Assembler Tutorial Part 1
Assembly Language Programming : Complete 8086 instruction sets
Assembly Language Programming : I/O ports - IN/OUT instructions
Assembly Language programming : Emu8086 Assembler Compiling and MASM / TASM compatibility
Assembly Language - string convert - Lowercase , Uppercase
for programming : the language of Number
Assembly Language - Complete Instruction Set and Instruction Timing of 8086 microprocessors
Assembly Language programming : A list of emulator supported interrupts
Assembly Language Programming : Emu8086 Overview, Using Emulator, Virtual Drives
Assembly Language Programming : All about Memory - Global Memory Table and Custom Memory Map
buy me a cup of coffee
My Paypal Account is : ksw.industries@gmail.com
Send me any small amount of money is welcome.buy me a cup of coffee
___________________________________________
Need More Detail ? contact me !!
My Paypal Account is : ksw.industries@gmail.com
buy me a cup of coffeeSend me any small amount of money is welcome.
___________________________________________
Don't know how to send money ? Click here for detail about Paypal account.
About PayPal Payment Methods
What type of PayPal accounts is better.
Don't have money? OK! Here is another way to get the program.
how to get my program - Free of charge
No comments:
Post a Comment