1
0
mirror of https://github.com/antonblanchard/chiselwatt.git synced 2026-01-14 15:46:35 +00:00

Rename PLL

Now we have multiple PLLs it makes no sense to call it pll_ecp5_evn.

Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
This commit is contained in:
Anton Blanchard 2020-02-02 09:44:04 +11:00 committed by Anton Blanchard
parent d0a15b35de
commit 43e1e73ce8
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
module pll_ecp5_evn(input clki, output clko, output lock);
module pll(input clki, output clko, output lock);
(* ICP_CURRENT="12" *) (* LPF_RESISTOR="8" *) (* MFG_ENABLE_FILTEROPAMP="1" *) (* MFG_GMCREF_SEL="2" *)
EHXPLLL #(
.PLLRST_ENA("DISABLED"),

View File

@ -1,4 +1,4 @@
module pll_ecp5_evn(input clki, output clko, output lock);
module pll(input clki, output clko, output lock);
wire clkfb;

View File

@ -14,7 +14,7 @@ wire clock_out;
reg reset_out;
wire lock;
pll_ecp5_evn pll(
pll chiselwatt_pll(
.clki(clock),
.clko(clock_out),
.lock(lock)