diff --git a/src/SM.ml b/src/SM.ml index 230ec974a..1c7f792b5 100644 --- a/src/SM.ml +++ b/src/SM.ml @@ -3,6 +3,7 @@ open GT (* 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