Details Table

┌──────────┬────────────────────┬─┬─┬─┬─┬─┬─┬──────────────────────────────────┐
│Encoding  │Instruction         │0│1│2│3│4│5│Description                       │
├──────────┼────────────────────┼─┼─┼─┼─┼─┼─┼──────────────────────────────────┤
│F6 /6     │DIV r/m8XXXXXX│Unsigned divide AX by r/m byte    │
│          │                    │ │ │ │ │ │ │(AL=Quotient, AH=Remainder)       │
├──────────┼────────────────────┼─┼─┼─┼─┼─┼─┼──────────────────────────────────┤
│F7 /6     │DIV r/m16XXXXXX│Unsigned divide DX:AX by r/m word │
│          │                    │ │ │ │ │ │ │(AX=Quotient, DX=Remainder)       │
├──────────┼────────────────────┼─┼─┼─┼─┼─┼─┼──────────────────────────────────┤
│F7 /6     │DIV r/m32           │ │ │ │XXX│Unsigned divide EDX:EAX by r/m    │
│          │                    │ │ │ │ │ │ │dword (EAX=Quotient,              │
│          │                    │ │ │ │ │ │ │EDX=Remainder)                    │
└──────────┴────────────────────┴─┴─┴─┴─┴─┴─┴──────────────────────────────────┘


[Back: DIV-Unsigned Divide]
[Next: Description]