Parse combinational event delay.

This commit is contained in:
steve 2001-12-31 05:23:13 +00:00
parent 4bb91c4f98
commit 912749342c
1 changed files with 6 additions and 1 deletions

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#if !defined(WINNT) && !defined(macintosh)
#ident "$Id: parse.y,v 1.142 2001/12/30 21:32:03 steve Exp $"
#ident "$Id: parse.y,v 1.143 2001/12/31 05:23:13 steve Exp $"
#endif
# include "config.h"
@ -2246,6 +2246,11 @@ statement
$$ = tmp;
}
}
| '@' '*' statement_opt
{ yyerror(@2, "sorry: Combinational event control "
"is not supported yet.");
$$ = $3;
}
| lpvalue '=' expression ';'
{ PAssign*tmp = new PAssign($1,$3);
tmp->set_file(@1.text);