aboutsummaryrefslogtreecommitdiffstats
path: root/tests/simple/vloghammer.v
blob: a0cde043ac0c6e103ae5ef5a6e6d0dd760b94d1a (plain)
1
2
3
4
5
6
7
8
9
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