osom_encoders_x86_64/encoders/mod.rs
1//! This module contains the encoders for the `X86_64` instruction set.
2
3// ** This file is automatically generated from x86.yaml schema. Do not modify! **
4
5pub mod add;
6pub mod call;
7pub mod cmp;
8pub mod cpuid;
9pub mod int;
10pub mod jcc;
11pub mod jmp;
12pub mod lea;
13pub mod lock;
14pub mod mov;
15pub mod nop;
16pub mod pop;
17pub mod push;
18pub mod ret;
19pub mod sub;
20pub mod syscall;
21pub mod sysenter;
22pub mod xor;