Hey folks-
Let’s say I have a stream of shorts whose values are one of [0,1,2,3]
(in
other words, the bottom 2 bits are active). I want to split these bits,
so
that:
[2,3,3,1,0] -> [1,0,1,1,1,1,0,1,0,0], etc.
What block(s) can help me achieve this?