Sign in
foss-fpga-tools
/
prjxray
/
fecc75d0de9fcd1edd8116d366b2db99ff2750f1
/
.
/
minitests
/
pip-switchboxes
/
top.v
blob: bd6e8da8dd245b8d00820b8d5a0d6b533738d8a2 [
file
] [
log
] [
blame
]
module
top
(
input a
,
b
,
c
,
output x
,
y
,
z
);
assign x
=
a
,
y
=
b
,
z
=
c
;
endmodule