package binsec

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Interface for X86 instructions

include Instruction.Basic with type mnemonic = X86Types.instruction_kind
type t = private {
  1. size : Size.Byte.t;
  2. opcode : string;
  3. mnemonic : mnemonic;
}
val create : int -> string -> mnemonic -> t
val pp_opcode : Format.formatter -> t -> unit
val pp_mnemonic : Format.formatter -> t -> unit
val to_generic_instruction : t -> Instruction.Generic.t