projects
/
nmigen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3062e77
)
back.rtlil: fix legalization of Part() with stride.
author
whitequark
<whitequark@whitequark.org>
Mon, 13 Apr 2020 14:43:43 +0000
(14:43 +0000)
committer
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Fri, 31 Dec 2021 13:26:46 +0000
(13:26 +0000)
Also known as word_select().
nmigen/back/rtlil.py
patch
|
blob
|
history
diff --git
a/nmigen/back/rtlil.py
b/nmigen/back/rtlil.py
index fb600034c8f5645552ba99b6ddcdb5422619068b..c074a97f5042fd8c9a04c393192d7efc7077d2ef 100644
(file)
--- a/
nmigen/back/rtlil.py
+++ b/
nmigen/back/rtlil.py
@@
-644,7
+644,7
@@
class _LHSValueCompiler(_ValueCompiler):
# system resources.
max_branches = len(value.value) // value.stride + 1
raise LegalizeValue(value.offset,
- range(
(1 << len(value.offset)) // value.stride
)[:max_branches],
+ range(
1 << len(value.offset)
)[:max_branches],
value.src_loc)
def on_Repl(self, value):