SPRUI30H November 2015 – May 2024 DRA745 , DRA746 , DRA750 , DRA756
Assembly syntax: | VBITI src1, src2, dst |
Operation: | Bit interleave |
Classification: | 2-input 1-output |
Bit width: | 32-bit |
Delay slot: | one |
C statement: | As follows |
Bit interleave 16 LSBs of src1 and src2 (each), and write to dst.
For example,
src1 = 0x25 (0000_0000_0010_0101)
src2 = 0x11(0000_0000_0001_0001)
Results in:
dst = 0x523(0000_0000_0000_0000_0000_1001_0010_0011)