Sign in
foss-fpga-tools
/
third_party
/
icestorm
/
5ab07ed32a768d484284f1d0e58f61c2ef9d398a
/
.
/
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