aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-06-20 17:29:45 -0700
committerEddie Hung <eddie@fpgeh.com>2019-06-20 17:29:45 -0700
commit7dca8def52fdd3a0e450d3f554c328904636798d (patch)
treec4ea7016f52694a5432a9180c0ed39a46c91ccce /tests
parentd1dadfcec8e5fffb1d27f067a86a606591b9c686 (diff)
downloadyosys-7dca8def52fdd3a0e450d3f554c328904636798d.tar.gz
yosys-7dca8def52fdd3a0e450d3f554c328904636798d.tar.bz2
yosys-7dca8def52fdd3a0e450d3f554c328904636798d.zip
Fix issue with part of PI being 1'bx
Diffstat (limited to 'tests')
-rw-r--r--tests/simple_abc9/abc9.v5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/simple_abc9/abc9.v b/tests/simple_abc9/abc9.v
index 0b83c34a3..64b625efe 100644
--- a/tests/simple_abc9/abc9.v
+++ b/tests/simple_abc9/abc9.v
@@ -262,3 +262,8 @@ endmodule
module abc9_test025(input [3:0] i, output [3:0] o);
abc9_test024_sub a(i[2:1], o[2:1]);
endmodule
+
+module abc9_test026(output [3:0] o, p);
+assign o = { 1'b1, 1'bx };
+assign p = { 1'b1, 1'bx, 1'b0 };
+endmodule