Some old x86 instructions are undefined in 64-bit mode. For instance LDS
, LES
and LSS
, or short opcodes of the INC r16
(40 + rw
) and INC r32
(40 + rd
) instructions.
Are there any instructions that are defined only in 64-bit mode, and not in 32-bit protected mode?
Edit: The context is development of an x86 processor. I want to make sure I'm compatible to the spec.