Binsec.X86ppPretty-printers for X86
val pp_address : Format.formatter -> X86Types.address -> unitval pp_bytes : int -> Format.formatter -> int -> unitpp_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 -> unitpp_byte ppf v is pp_bytes 1 ppf v
val pp_word : Format.formatter -> int -> unitpp_word ppf v is pp_bytes 4 ppf v
val pp_instr : Format.formatter -> X86Types.instruction_kind -> unit