nextpnr/xc7/attosoc_top.v

16 lines
244 B
Coq
Raw Normal View History

2018-12-01 07:24:32 +08:00
module top (
input clk,
output [3:0] led
);
(* keep *)
wire led_unused;
wire gclk;
2018-12-03 07:41:03 +08:00
clk_wiz_v3_6 pll(.CLK_IN1(clk), .CLK_OUT1(gclk));
//assign gclk = clk;
2018-12-01 07:24:32 +08:00
attosoc soc(.clk(gclk), .led({led_unused, led}));
endmodule