diff options
author | Claire Xenia Wolf <claire@clairexen.net> | 2021-09-22 17:34:20 +0200 |
---|---|---|
committer | Claire Xenia Wolf <claire@clairexen.net> | 2021-09-23 14:54:28 +0200 |
commit | 15fb0107dcdfcf98c56f229727c7cd701ff9b4b3 (patch) | |
tree | 53d8c5a6530545103701e0842d926b40a657748c /tests/simple/case_expr_const.v | |
parent | 3931b3a03f65965daca20b1228d8882192e74650 (diff) | |
download | yosys-15fb0107dcdfcf98c56f229727c7cd701ff9b4b3.tar.gz yosys-15fb0107dcdfcf98c56f229727c7cd701ff9b4b3.tar.bz2 yosys-15fb0107dcdfcf98c56f229727c7cd701ff9b4b3.zip |
Fix "make vgtest" so it runs to the end (but now it fails ;)
Signed-off-by: Claire Xenia Wolf <claire@clairexen.net>
Diffstat (limited to 'tests/simple/case_expr_const.v')
-rw-r--r-- | tests/simple/case_expr_const.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/simple/case_expr_const.v b/tests/simple/case_expr_const.v index 58267b965..d9169c084 100644 --- a/tests/simple/case_expr_const.v +++ b/tests/simple/case_expr_const.v @@ -1,6 +1,6 @@ // Note: case_expr_{,non_}const.v should be modified in tandem to ensure both // the constant and non-constant case evaluation logic is covered -module top( +module case_expr_const_top( // expected to output all 1s output reg a, b, c, d, e, f, g, h ); |