File: cross_0.v

package info (click to toggle)
fpga-icestorm 0~20160913git266e758-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,628 kB
  • ctags: 1,871
  • sloc: python: 15,333; cpp: 3,356; sh: 1,598; ansic: 531; makefile: 417
file content (9 lines) | stat: -rw-r--r-- 236 bytes parent folder | download | duplicates (5)
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