kestrel/lib/Instr.mli
2025-11-27 16:39:54 -03:00

6 lines
160 B
OCaml

type t =
| Instruction of { short : bool; return : bool; keep : bool; opcode : int }
val of_int : int -> t
val to_int : t -> int
val to_string : t -> string