package binsec

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

Pretty-printers for X86

val pp_address : Format.formatter -> X86Types.address -> unit
val pp_bytes : int -> 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).

val pp_byte : Format.formatter -> int -> unit

pp_byte ppf v is pp_bytes 1 ppf v

val pp_word : Format.formatter -> int -> unit

pp_word ppf v is pp_bytes 4 ppf v