summaryrefslogtreecommitdiff
path: root/asm/asmlex.mll
diff options
context:
space:
mode:
authorAlex AUVOLAT <alex.auvolat@ens.fr>2014-01-10 16:55:37 +0100
committerAlex AUVOLAT <alex.auvolat@ens.fr>2014-01-10 16:55:37 +0100
commitb840059a7f2fb0e3796414f30f1e241d03b44dbf (patch)
tree78cc779a2b50f0be294f276d1352e5cc2b2fc463 /asm/asmlex.mll
parent9495dd3a9e4aa9e27004ce9718ac39c197db13c0 (diff)
downloadSystDigit-Projet-b840059a7f2fb0e3796414f30f1e241d03b44dbf.tar.gz
SystDigit-Projet-b840059a7f2fb0e3796414f30f1e241d03b44dbf.zip
Correction de li pour valeurs négatives ; utilisation de labels dans des data.
Diffstat (limited to 'asm/asmlex.mll')
-rw-r--r--asm/asmlex.mll1
1 files changed, 1 insertions, 0 deletions
diff --git a/asm/asmlex.mll b/asm/asmlex.mll
index 873e32d..cace4b7 100644
--- a/asm/asmlex.mll
+++ b/asm/asmlex.mll
@@ -104,6 +104,7 @@ rule token = parse
| '(' { LP }
| ')' { RP }
| '"' { str [] lexbuf }
+ |';' { SEMIC }
and str acc = parse
| "\\\\" { str ('\\' :: acc) lexbuf }