3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-31 08:23:19 +00:00

More fixes in ternary op sign handling

This commit is contained in:
Clifford Wolf 2013-07-12 13:13:04 +02:00
parent ded769c98c
commit 3650fd7fbe
2 changed files with 11 additions and 0 deletions

View file

@ -65,3 +65,11 @@ module test09(a, b, c, y);
assign y = a ? b : c;
endmodule
module test10(a, b, c, y);
input a;
input signed [1:0] b;
input signed [2:0] c;
output y;
assign y = ^(a ? b : c);
endmodule