3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-29 23:43:16 +00:00

Another vloghammer related bugfix

This commit is contained in:
Clifford Wolf 2013-07-11 19:24:59 +02:00
parent a9fefc6ce1
commit b380c8c790
2 changed files with 8 additions and 1 deletions

View file

@ -50,3 +50,10 @@ module test07(a, b, y);
assign y = 2'b11 != a+b;
endmodule
module test08(a, b, y);
input [1:0] a;
input [1:0] b;
output y;
assign y = a == ($signed(b) >>> 1);
endmodule