diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/simple/graphtest.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/simple/graphtest.v b/tests/simple/graphtest.v index 74788dbbe..9b16b61ca 100644 --- a/tests/simple/graphtest.v +++ b/tests/simple/graphtest.v @@ -25,7 +25,7 @@ assign Z[7:4] = {1'b0, B[2:0]}; // Concat of CV and PI connect to PO always @* begin if (A == 4'b1111) begin // All-Const at port (eq) X = B; - end + end else begin X = 4'b0000; // All-Const at port (mux) end |