mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
spiflash: fix miso bitbang with large DQ
This commit is contained in:
parent
553262bcc1
commit
5d5d5edfe2
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ class SpiFlash(Module, AutoCSR):
|
||||||
dq.oe.eq(1)
|
dq.oe.eq(1)
|
||||||
),
|
),
|
||||||
If(self.bitbang.storage[1],
|
If(self.bitbang.storage[1],
|
||||||
self.miso.status.eq(dq.i[-1])
|
self.miso.status.eq(dq.i[1])
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue