From: Peter Johnson Date: Mon, 21 May 2001 22:10:02 +0000 (-0000) Subject: Added "TO". X-Git-Tag: v0.1.0~482 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e3fae72005d7ee55f7edbe7863aa0bdcee94c9db;p=yasm Added "TO". svn path=/trunk/yasm/; revision=29 --- diff --git a/modules/parsers/nasm/token.l.in b/modules/parsers/nasm/token.l.in index 47278dc4..2ceff815 100644 --- a/modules/parsers/nasm/token.l.in +++ b/modules/parsers/nasm/token.l.in @@ -1,4 +1,4 @@ -/* $Id: token.l.in,v 1.4 2001/05/21 21:44:47 mu Exp $ +/* $Id: token.l.in,v 1.5 2001/05/21 22:10:02 peter Exp $ * Main lexer * * Copyright (C) 2001 Peter Johnson @@ -144,6 +144,8 @@ nosplit { return NOSPLIT; } org { return ORG; } +to { return TO; } + /* operand size overrides */ o16 { yylval.int_val = 16; return OPERSIZE; } o32 { yylval.int_val = 32; return OPERSIZE; } diff --git a/src/parsers/nasm/token.l.in b/src/parsers/nasm/token.l.in index 47278dc4..2ceff815 100644 --- a/src/parsers/nasm/token.l.in +++ b/src/parsers/nasm/token.l.in @@ -1,4 +1,4 @@ -/* $Id: token.l.in,v 1.4 2001/05/21 21:44:47 mu Exp $ +/* $Id: token.l.in,v 1.5 2001/05/21 22:10:02 peter Exp $ * Main lexer * * Copyright (C) 2001 Peter Johnson @@ -144,6 +144,8 @@ nosplit { return NOSPLIT; } org { return ORG; } +to { return TO; } + /* operand size overrides */ o16 { yylval.int_val = 16; return OPERSIZE; } o32 { yylval.int_val = 32; return OPERSIZE; } diff --git a/src/token.l.in b/src/token.l.in index 47278dc4..2ceff815 100644 --- a/src/token.l.in +++ b/src/token.l.in @@ -1,4 +1,4 @@ -/* $Id: token.l.in,v 1.4 2001/05/21 21:44:47 mu Exp $ +/* $Id: token.l.in,v 1.5 2001/05/21 22:10:02 peter Exp $ * Main lexer * * Copyright (C) 2001 Peter Johnson @@ -144,6 +144,8 @@ nosplit { return NOSPLIT; } org { return ORG; } +to { return TO; } + /* operand size overrides */ o16 { yylval.int_val = 16; return OPERSIZE; } o32 { yylval.int_val = 32; return OPERSIZE; }