diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-01-08 18:19:21 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-01-08 18:19:21 +0100 |
commit | 1f228ce77e8a71475930b433fb2c72521203aa99 (patch) | |
tree | 8a9db2a92abb2265905b737bc935f6b299f1fb95 /asm/asm.ml | |
parent | fa2e69bf68346d653d194d863c019674ea0fd7e2 (diff) | |
download | SystDigit-Projet-1f228ce77e8a71475930b433fb2c72521203aa99.tar.gz SystDigit-Projet-1f228ce77e8a71475930b433fb2c72521203aa99.zip |
Petites modifications
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) |