3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-21 05:13:40 +00:00

Behavior should be identical now to rev. 0b4a64ac6a (next: testing before constfold fixes)

This commit is contained in:
Clifford Wolf 2013-11-02 21:13:01 +01:00
parent f912e029de
commit ada80545fa
3 changed files with 12 additions and 8 deletions

View file

@ -73,10 +73,10 @@ module test10(a, b, c, y);
assign y = ^(a ? b : c);
endmodule
module test11(a, b, y);
input signed [3:0] a;
input signed [3:0] b;
output signed [5:0] y;
assign y = -(5'd27);
endmodule
// module test11(a, b, y);
// input signed [3:0] a;
// input signed [3:0] b;
// output signed [5:0] y;
// assign y = -(5'd27);
// endmodule