From: whitequark Date: Wed, 9 Oct 2019 20:44:07 +0000 (+0000) Subject: build.plat: don't create default sync domain as reset-less. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1d94b97202c5260022e6040437adbab2b3133e57;p=nmigen.git build.plat: don't create default sync domain as reset-less. --- diff --git a/nmigen/build/plat.py b/nmigen/build/plat.py index acad494..be73772 100644 --- a/nmigen/build/plat.py +++ b/nmigen/build/plat.py @@ -101,7 +101,7 @@ class Platform(ResourceManager, metaclass=ABCMeta): rst_i = Const(0) m = Module() - m.domains += ClockDomain("sync", reset_less=self.default_rst is None) + m.domains += ClockDomain("sync") m.d.comb += ClockSignal("sync").eq(clk_i) m.submodules.reset_sync = ResetSynchronizer(rst_i, domain="sync") return m