aboutsummaryrefslogtreecommitdiffstats
path: root/icefuzz/tests/cross_0.v
blob: 515b7ac49e112c96b3ff577ef4d5201977a35d14 (plain)
1
2
3
4
5
6
7
8
9
module top (
	input in_left, in_right, in_top, in_bottom,
	output out_left, out_right, out_top, out_bottom
);
	assign out_left = in_right;
	assign out_right = in_left;
	assign out_top = in_bottom;
	assign out_bottom = in_top;
endmodule