clock/efinix/create_clkout: Set with_reset to True by default (similar to others vendors).
This commit is contained in:
parent
6049018f10
commit
3510daaf0c
|
@ -80,7 +80,7 @@ class TRIONPLL(Module):
|
|||
|
||||
self.logger.info("Using {}".format(block["resource"]))
|
||||
|
||||
def create_clkout(self, cd, freq, phase=0, margin=1e-2, name="", with_reset=False):
|
||||
def create_clkout(self, cd, freq, phase=0, margin=1e-2, name="", with_reset=True):
|
||||
assert self.nclkouts < self.nclkouts_max
|
||||
|
||||
clk_out_name = f"{self.name}_clkout{self.nclkouts}" if name == "" else name
|
||||
|
|
Loading…
Reference in New Issue