Search notes:

instructions

call
cpuid queries the processor for its type and supported feature.
int 3
iret
jmp
mov
movs
pop
push
rdtsc
ret
syscall
sysenter
xchg

Instruction format

An instruction consists of
For details refer to chapter two (»instruction format«) and appendix B (»Instruction formats and encoings«) in volume two (»instruction set reference«) in Intel® 64 and IA-32 Architectures Software Developer’s Manual.

System calls / entering kernel mode

x86-64: syscall
x86: sysenter.
legacy: int 0x80
In the 80386 days, the fastest way to switch from V86 mode to kernel mode was to execute an invalid instruction.

Hypervisor

A hypervisor needs specialized instructions:

Index