Sign in
foss-eda-tools
/
third_party
/
shuttle
/
sky130
/
mpw-008
/
slot-010
/
e6e4f565794a6af13db7fe2c48c01c3977b67d35
/
.
/
verilog
/
rtl
/
020_top.v
blob: 5a983e19e0654fbae69ca4f043f5051829808fd6 [
file
] [
log
] [
blame
]
module
chase_the_beat
(
input
[
7
:
0
]
io_in
,
output
[
7
:
0
]
io_out
);
top top
(.
o
(
io_out
),
.
clk
(
io_in
[
0
]),
.
rst
(
io_in
[
1
]),
.
tap
(
io_in
[
2
]),
.
mode
(
io_in
[
3
]));
endmodule