mirror of
https://github.com/enjoy-digital/litedram.git
synced 2025-01-04 09:52:25 -05:00
core/multiplexer: fix 1:1
This commit is contained in:
parent
a215ac7d8b
commit
b13962c7bd
1 changed files with 2 additions and 1 deletions
|
@ -184,7 +184,8 @@ class Multiplexer(Module, AutoCSR):
|
|||
self.comb += [
|
||||
choose_cmd.want_cmds.eq(1),
|
||||
choose_cmd.want_activates.eq(ras_allowed),
|
||||
choose_req.want_cmds.eq(1)
|
||||
choose_req.want_cmds.eq(1),
|
||||
choose_req.want_activates.eq(ras_allowed),
|
||||
]
|
||||
|
||||
# Command steering
|
||||
|
|
Loading…
Reference in a new issue