diff options
Diffstat (limited to 'asm/asm.ml')
-rw-r--r-- | asm/asm.ml | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,3 +1,5 @@ +exception Asm_error of string + type reg = int type imm = @@ -55,6 +57,7 @@ type instr = | Liu of (reg * imm) | Liuz of (reg * imm) | Lra of imm + | TwoRawBytes of (int * int) module Imap = Map.Make(String) |