package binsec

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

Module Binsec_isa_x86_32.X86InstructionSource

Interface for X86 instructions

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