From: Florent Kermarrec Date: Thu, 14 Aug 2014 06:15:38 +0000 (+0800) Subject: lasmicon: fix reset_n level X-Git-Tag: 24jan2021_ls180~2667 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=194a5a0491273cd8aacb15e93748da9cb45486c0;p=litex.git lasmicon: fix reset_n level --- diff --git a/misoclib/lasmicon/multiplexer.py b/misoclib/lasmicon/multiplexer.py index 525f22df..e2d22998 100644 --- a/misoclib/lasmicon/multiplexer.py +++ b/misoclib/lasmicon/multiplexer.py @@ -77,7 +77,7 @@ class _Steerer(Module): if hasattr(phase, "odt"): self.comb += phase.odt.eq(1) if hasattr(phase, "reset_n"): - self.comb += phase.reset_n.eq(0) + self.comb += phase.reset_n.eq(1) self.sync += [ phase.address.eq(Array(cmd.a for cmd in commands)[sel]), phase.bank.eq(Array(cmd.ba for cmd in commands)[sel]),