Binsec.MachineAbstract description of machines
Abstract representation of hardware architecture
type isa = private | Unknown| ARM of {rev : [ `v7 | `v8 ];endianness : endianness;}| RISCV of {}| X86 of {}| Z80module ISA : sig ... endmodule Bitwidth : sig ... endWord size of the machine in bits
module Endianness : Sigs.PRINTABLE with type t = endiannesstype t = isaval amd64 : tval armv7 : endianness -> tval armv8 : endianness -> tval riscv : [ `x32 | `x64 | `x128 ] -> tval x86 : tval z80 : tval unknown : tinclude Sigs.PRINTABLE with type t := tval pp : Format.formatter -> t -> unit