blob: 01583e255e1fb6f8f0a0742ed2b2606a15a993ec [file] [log] [blame]
Matt Vennb7fefa72022-12-02 14:01:04 +01001
2`default_nettype none
3
4module 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));
9endmodule