Sign in
foss-fpga-tools
/
third_party
/
icestorm
/
6943ad7afae03fb19f55522d0e22f2db9b25bb95
/
.
/
icefuzz
/
tests
/
cross_0.v
blob: 515b7ac49e112c96b3ff577ef4d5201977a35d14 [
file
] [
log
] [
blame
]
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