mirror of
https://gitlab.com/brendanhaines/ice40.git
synced 2024-11-09 21:14:58 -07:00
19 lines
218 B
Coq
19 lines
218 B
Coq
|
// 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
|