a0cde043ac0c6e103ae5ef5a6e6d0dd760b94d1a
[yosys.git] / tests / simple / vloghammer.v
1
2 // test cases found using vloghammer
3 // https://github.com/cliffordwolf/VlogHammer
4
5 module test01(a, y);
6 input [7:0] a;
7 output [3:0] y;
8 assign y = ~a >> 4;
9 endmodule
10