package binsec

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

Module Binsec_base.MnemonicSource

Mnemonic

Sourcetype 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
Sourceval supported : 'a -> (Format.formatter -> 'a -> unit) -> t
Sourceval unsupported : ?mnemonic_hint:string -> unit -> t
Sourceval unknown : t
Sourceval pp : Format.formatter -> t -> unit
Sourceval to_string : t -> string