aboutsummaryrefslogtreecommitdiffstats
path: root/atk16_fpga/top.v
blob: 386d6e308d882da8d75127e9a6e8c03141330e96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
`default_nettype none

module top(
    input wire SYSCLK,
    input wire BUT1,
    output wire LED1
);

    cu cu_inst(
        .clk(SYSCLK),
        .rst(BUT1)
    );

    assign LED1 = BUT1;

endmodule