From 5a7b4c3406fc080e780b76a0324ded5ac9721f71 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 27 Aug 2019 14:06:13 +0200 Subject: [PATCH] targets/nexys_video: generate clk100 --- litex/boards/targets/nexys_video.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litex/boards/targets/nexys_video.py b/litex/boards/targets/nexys_video.py index ad78f538f..6bd011ecb 100755 --- a/litex/boards/targets/nexys_video.py +++ b/litex/boards/targets/nexys_video.py @@ -42,6 +42,7 @@ class _CRG(Module): pll.create_clkout(self.cd_sys4x, 4*sys_clk_freq) pll.create_clkout(self.cd_sys4x_dqs, 4*sys_clk_freq, phase=90) pll.create_clkout(self.cd_clk200, 200e6) + pll.create_clkout(self.cd_clk100, 100e6) self.submodules.idelayctrl = S7IDELAYCTRL(self.cd_clk200)