mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
asmicon/multiplexer: correct read-to-write delay to prevent conflicts on the tag bus
This commit is contained in:
parent
274a00217e
commit
1451cad710
1 changed files with 1 additions and 1 deletions
|
@ -239,7 +239,7 @@ class Multiplexer:
|
||||||
|
|
||||||
# Control FSM
|
# Control FSM
|
||||||
fsm = FSM("READ", "WRITE", "REFRESH", delayed_enters=[
|
fsm = FSM("READ", "WRITE", "REFRESH", delayed_enters=[
|
||||||
("RTW", "WRITE", math.ceil((self.timing_settings.CL+1)/2)),
|
("RTW", "WRITE", self.timing_settings.rd_delay),
|
||||||
("WTR", "READ", self.timing_settings.tWR)
|
("WTR", "READ", self.timing_settings.tWR)
|
||||||
])
|
])
|
||||||
fsm.act(fsm.READ,
|
fsm.act(fsm.READ,
|
||||||
|
|
Loading…
Reference in a new issue