aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/regressions/pr0252/top.v
blob: 3fa9b54f4ff43db2a5605b165a4f13596145c4c0 (plain)
1
2
3
4
5
6
7
8
module top(
	inout x,
	input a
);

assign x = a;

endmodule