You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
data[7]
data[7:0]
8'(data) // annoying to parse128'(data)
128's(data)
{16'b0, foo} // don't want the user to do math
{{16{foo[15]}, foo}} // are you kidding me?
WAL
(slice data 7)
(slice data 70)
(trunc data 8)
(zext data 128)
(sext data 128)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Bit-select, Part-select, Truncate, extend (signed / unsigned)
related to #2
Shouldn't be able to slice beyond bounds?
data
is 32-bitVerilog-ish
WAL
Chaining operator
Beta Was this translation helpful? Give feedback.
All reactions