Esempio n. 1
0
 def __init__(self,
              platform,
              clk_name,
              rst_name,
              period=None,
              rst_invert=False):
     SimpleCRG.__init__(self, platform, clk_name, rst_name, rst_invert)
     _add_period_constraint(platform, self._clk, period)
Esempio n. 2
0
	def __init__(self, platform, clk_name, rst_name, period=None, rst_invert=False):
		SimpleCRG.__init__(self, platform, clk_name, rst_name, rst_invert)
		_add_period_constraint(platform, self._clk, period)
Esempio n. 3
0
	def __init__(self, platform, clk_name, rst_name, period, rst_invert=False):
		SimpleCRG.__init__(self, platform, clk_name, rst_name, rst_invert)
		platform.add_period_constraint(platform, self.cd_sys.clk, period)