<<< Prefix-Extending the Simplified Instruction Set (not x86!) | Index | >>> |
Using a prefix byte to extend the instruction set:
For example, the opcode 0FFh is illegal, since it corresponds to a
mov const, dx ; error: attempt to modify immediate operand
instruction. So, we could use 0FFh as a special prefix byte to further expand the instruction set.
<<< Prefix-Extending the Simplified Instruction Set (not x86!) | Index | >>> |