summaryrefslogtreecommitdiff
path: root/asm/asm.ml
diff options
context:
space:
mode:
Diffstat (limited to 'asm/asm.ml')
-rw-r--r--asm/asm.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/asm/asm.ml b/asm/asm.ml
index 7df7604..d3a488b 100644
--- a/asm/asm.ml
+++ b/asm/asm.ml
@@ -5,7 +5,6 @@ type reg = int
type imm =
| Imm of int
| Lab of string
- | Labu of string
type fmt_r =
| Add
@@ -61,7 +60,8 @@ type instr =
module Imap = Map.Make(String)
-type program = { text : instr list; data : (int * bool) list; lbls : int Imap.t }
+type program = { text : instr list; data : (int * bool) list;
+ lbls : (int * bool) Imap.t }
let keywords_r = [
"add",Add;