Rev. 1.50, 10/04, page 229 of 448
10.1.16 DIV0U (Divide (Step 0) as Unsigned): Arithmetic Instruction
Format Operation Instruction Code Cycle T Bit
DIV0U 0 → M/Q/T 0000000000011001 1 0
Description: This instruction performs initial settings for unsigned division. This instruction is
followed by a DIV1 instruction that executes 1-digit division, for example, and repeated divisions
are executed to find the quotient. See the description of the DIV1 instruction for details.
Notes: None
Operation:
DIV0U( ) /* DIV0U */
{
M = Q = T = 0;
PC += 2;
}
Example:
See the examples for the DIV1 instruction.