package binsec

  1. Overview
  2. Docs
On This Page
  1. Mnemonic
Legend:
Library
Module
Module type
Parameter
Class
Class type

Mnemonic

type t = private
  1. | Unknown
    (*

    Opcodes which do not have a valid mnemonic translation

    *)
  2. | Unsupported of string option
    (*

    Opcodes which have a valid mnemonic but do not have a handled mnemonic translation

    *)
  3. | Supported of string
val supported : 'a -> (Format.formatter -> 'a -> unit) -> t
val unsupported : ?mnemonic_hint:string -> unit -> t
val unknown : t
val pp : Format.formatter -> t -> unit
val to_string : t -> string