Sign in
foss-eda-tools
/
third_party
/
shuttle
/
sky130
/
mpw-008
/
slot-010
/
7385472c8fb972355f9d688ffc9d056994b1d012
/
.
/
verilog
/
rtl
/
076_TrainLED2_top.v
blob: c122685de2aff82706a1992609e3fe65326d30b4 [
file
] [
log
] [
blame
]
module
cpldcpu_TrainLED2top
(
input
[
7
:
0
]
io_in
,
output
[
7
:
0
]
io_out
);
// Instance 1
TrainLED2
TrainLED2_top1
(
.
clk
(
io_in
[
0
]),
.
rst
(
io_in
[
1
]),
.
din
(
io_in
[
2
]),
.
dout
(
io_out
[
0
]),
.
led1
(
io_out
[
1
]),
.
led2
(
io_out
[
2
]),
.
led3
(
io_out
[
3
])
);
endmodule