16 bit Assembly
Home Site Map Instruction Index
The INC instruction is used to increase the operand by one.
The operand is increased by one.
This command has 2 parts, Instruction, then either a Register or a memory address.
Assembly Sample | Description | 16 bit Machine Code |
---|---|---|
INC AX | ; Increments a Register | 40 |
INC [BX] | ; Increments a memory address | FF 07 |