Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
lasmicon/multiplexer: remove unnecessary wait states
  • Loading branch information
Sebastien Bourdeauducq committed Jun 15, 2013
1 parent 3644d2a commit 351ba86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions milkymist/lasmicon/multiplexer.py
Expand Up @@ -148,8 +148,8 @@ def anti_starvation(timeout):

# Control FSM
fsm = FSM("READ", "WRITE", "REFRESH", delayed_enters=[
("RTW", "WRITE", timing_settings.read_latency),
("WTR", "READ", timing_settings.tWTR)
("RTW", "WRITE", timing_settings.read_latency-1),
("WTR", "READ", timing_settings.tWTR-1)
])
self.submodules += fsm
fsm.act(fsm.READ,
Expand Down

0 comments on commit 351ba86

Please sign in to comment.