Sign in
foss-eda-tools
/
third_party
/
shuttle
/
sky130
/
mpw-008
/
slot-010
/
7385472c8fb972355f9d688ffc9d056994b1d012
/
.
/
verilog
/
rtl
/
078_top.v
blob: 01583e255e1fb6f8f0a0742ed2b2606a15a993ec [
file
] [
log
] [
blame
]
Matt Venn
b7fefa7
2022-12-02 14:01:04 +0100
[
diff
] [
blame
]
1
2
`default_nettype none
3
4
module davidsiaw_stackcalc (
5
input wire [7:0] io_in,
6
output wire [7:0] io_out
7
);
8
stack_cpu cpu(.io_in(io_in), .io_out(io_out));
9
endmodule