soc/cores/hyperbus: Make Rst synchronous to allow IO Reg (even if low speed).
This commit is contained in:
parent
76cf004913
commit
8b86b16077
|
@ -107,7 +107,7 @@ class HyperRAM(LiteXModule):
|
||||||
|
|
||||||
# Rst.
|
# Rst.
|
||||||
if hasattr(pads, "rst_n"):
|
if hasattr(pads, "rst_n"):
|
||||||
self.comb += pads.rst_n.eq(1 & ~self.conf_rst)
|
self.sync += pads.rst_n.eq(1 & ~self.conf_rst)
|
||||||
|
|
||||||
# CSn.
|
# CSn.
|
||||||
self.comb += [
|
self.comb += [
|
||||||
|
|
Loading…
Reference in New Issue