3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 00:55:32 +00:00

Fix issue with part of PI being 1'bx

This commit is contained in:
Eddie Hung 2019-06-20 17:29:45 -07:00
parent f11c9a419b
commit 014606affe
2 changed files with 11 additions and 4 deletions

View file

@ -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