_kshiftri_mask16
Classification
Header File
Instruction
KSHIFTRW k, k, imm8
Synopsis
_kshiftri_mask16(__mmask16 a, unsigned int count);
Description
Shift the bits of 16-bit mask "a" right by "count" while shifting in zeros, and store the least significant 16 bits of the result in "k".
Operation
k[MAX:0] := 0
IF count[7:0] <= 15
k[15:0] := a[15:0] >> count[7:0]
FI