Temporarily treat blocking assignment as non-blocking

This commit is contained in:
Nick Gasson 2008-06-17 14:07:36 +01:00
parent 1debbc3100
commit 01249000c3
1 changed files with 1 additions and 0 deletions

View File

@ -402,6 +402,7 @@ int draw_stmt(vhdl_process *proc, stmt_container *container,
return draw_block(proc, container, stmt);
case IVL_ST_NOOP:
return draw_noop(proc, container, stmt);
case IVL_ST_ASSIGN: // TODO: remove!
case IVL_ST_ASSIGN_NB:
return draw_nbassign(proc, container, stmt);
case IVL_ST_DELAY: