package binsec

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

Module Binsec_isa_x86_32.X86ppSource

Pretty-printers for X86

Sourceval pp_address : Stdlib.Format.formatter -> X86Types.address -> unit
Sourceval pp_bytes : int -> Stdlib.Format.formatter -> int -> unit

pp_bytes n ppf v prints the first n bytes of v into ppf. n must be between 0 (excluded) and 4 (included) as v represents a X86 word (32 bits).

Sourceval pp_byte : Stdlib.Format.formatter -> int -> unit

pp_byte ppf v is pp_bytes 1 ppf v

Sourceval pp_word : Stdlib.Format.formatter -> int -> unit

pp_word ppf v is pp_bytes 4 ppf v

Sourceval pp_instr : Stdlib.Format.formatter -> X86Types.instruction_kind -> unit