lasmicon: fix reset_n level

This commit is contained in:
Florent Kermarrec 2014-08-14 14:15:38 +08:00 committed by Sebastien Bourdeauducq
parent 3a960e9e6a
commit 194a5a0491
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ class _Steerer(Module):
if hasattr(phase, "odt"): if hasattr(phase, "odt"):
self.comb += phase.odt.eq(1) self.comb += phase.odt.eq(1)
if hasattr(phase, "reset_n"): if hasattr(phase, "reset_n"):
self.comb += phase.reset_n.eq(0) self.comb += phase.reset_n.eq(1)
self.sync += [ self.sync += [
phase.address.eq(Array(cmd.a for cmd in commands)[sel]), phase.address.eq(Array(cmd.a for cmd in commands)[sel]),
phase.bank.eq(Array(cmd.ba for cmd in commands)[sel]), phase.bank.eq(Array(cmd.ba for cmd in commands)[sel]),