Opcode DIV
CPU: i8086+
Type of instruction: User
Instruction: DIV src
Description:
AX = AX / src;
Note: Unsigned division. Divides accumulator (AX) by "src". If divisor
is a byte value, result is put to AL and remainder to AH. If divisor is
a word value, then DX:AX is divided by "src" and result is stored in AX
and remainder is stored in DX.
Flags Affected: AF, CF, OF, PF, SF, ZF
+++++++++++++++++++++++
Clocks (i486):
DIV reg8 16
DIV reg16 24
DIV reg32 40
DIV mem8 16
DIV mem16 24
DIV mem32 40
Copyright by InternetNightmare 2005-2006