From 194a5a0491273cd8aacb15e93748da9cb45486c0 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Thu, 14 Aug 2014 14:15:38 +0800 Subject: [PATCH] lasmicon: fix reset_n level --- misoclib/lasmicon/multiplexer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misoclib/lasmicon/multiplexer.py b/misoclib/lasmicon/multiplexer.py index 525f22df3..e2d229987 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]),