[Libre-soc-bugs] [Bug 736] SimdSignal's integration with nmigen needs to handle first args not being SimdSignals
bugzilla-daemon at libre-soc.org
bugzilla-daemon at libre-soc.org
Sun Oct 24 21:52:46 BST 2021
https://bugs.libre-soc.org/show_bug.cgi?id=736
--- Comment #2 from Luke Kenneth Casson Leighton <lkcl at lkcl.net> ---
as in, rather than:
s = SimdSignal(...)
Cat(Const(...), s)
it would be e.g.:
s = SimdSignal(...)
c = SimdSignal(...)
comb += c.eq(Const(...))
Cat(c, s)
which "avoids" the problem that i think might turn out
to be unique to Cat()
--
You are receiving this mail because:
You are on the CC list for the bug.
More information about the libre-soc-bugs
mailing list