From: Jean THOMAS Date: Mon, 13 Jul 2020 11:07:50 +0000 (+0200) Subject: Reduce POR duration X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9cb0465e01a3b69e1f58702bc8a60e646671fe4d;p=gram.git Reduce POR duration --- diff --git a/gram/simulation/crg.py b/gram/simulation/crg.py index 092c319..d1ce6db 100644 --- a/gram/simulation/crg.py +++ b/gram/simulation/crg.py @@ -105,7 +105,7 @@ class ECPIX5CRG(Elaboratable): ] # Power-on delay (655us) - podcnt = Signal(16, reset=2**16-1) + podcnt = Signal(3, reset=2**3-1) pod_done = Signal() with m.If(podcnt != 0): m.d.rawclk += podcnt.eq(podcnt-1)