ice40/rtl/top.v

19 lines
218 B
Coq
Raw Permalink Normal View History

2021-07-02 00:35:20 -06:00
// Author: Brendan Haines
// Date: 2020-05-04
module top(
input clk,
input n_reset,
output [7:0] led
);
counter #(
.BITS(8)
) count(
.clk(clk),
.reset(~n_reset),
.y(led)
);
endmodule