From e0c408cb4a9fb411aff087d5c1e8c610d3f5bc3d Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Sat, 13 Apr 2013 21:19:10 +0200 Subject: Fixed a bug in AST frontend for cases with non-blocking assigned variables as case values --- tests/simple/process.v | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'tests/simple') diff --git a/tests/simple/process.v b/tests/simple/process.v index 53258664..8cb4c870 100644 --- a/tests/simple/process.v +++ b/tests/simple/process.v @@ -1,4 +1,23 @@ +module blocking_cond (in, out); + +input in; +output reg out; +reg tmp; + +always @* begin + tmp = 1; + out = 1'b0; + case (1'b1) + tmp: out = in; + endcase + tmp = 0; +end + +endmodule + +// ------------------------------------------------------------- + module uut(clk, arst, a, b, c, d, e, f, out1); input clk, arst, a, b, c, d, e, f; -- cgit v1.2.3