mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
Added missed CONST instruction
This commit is contained in:
parent
0d3cd8aa61
commit
6b9953b41f
1 changed files with 1 additions and 0 deletions
|
|
@ -4,6 +4,7 @@ open Language
|
|||
(* The type for the stack machine instructions *)
|
||||
@type insn =
|
||||
(* binary operator *) | BINOP of string
|
||||
(* put a constant on the stack *) | CONST of int
|
||||
(* read to stack *) | READ
|
||||
(* write from stack *) | WRITE
|
||||
(* load a variable to the stack *) | LD of string
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue