3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-15 17:06:40 +00:00

Fixed another bug found using vloghammer

This commit is contained in:
Clifford Wolf 2013-07-07 16:49:30 +02:00
parent eff68560a2
commit e8da3ea7b6
2 changed files with 11 additions and 1 deletions

10
tests/simple/vloghammer.v Normal file
View file

@ -0,0 +1,10 @@
// test cases found using vloghammer
// https://github.com/cliffordwolf/VlogHammer
module test01(a, y);
input [7:0] a;
output [3:0] y;
assign y = ~a >> 4;
endmodule