initial import

This commit is contained in:
Lobo 2025-11-27 16:39:54 -03:00
commit ad589d2894
26 changed files with 2241 additions and 0 deletions

6
lib/Instr.mli Normal file
View file

@ -0,0 +1,6 @@
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