aboutsummaryrefslogtreecommitdiffstats
path: root/atk16_fpga/top.v
blob: c456b31ab2c9f47b9ede0b27d3def4e76f745aa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module top(
    input wire SYSCLK,
    output wire LED1
);

    assign LED1 = SYSCLK;

    wire [15:0] result;
    wire [3:0]  flags;
    alu alu_inst(
        .sel(3'd0),
        .a(16'd0),
        .b(16'd0),
        .result(result),
        .flags(flags)
    );

endmodule