There are total six shifting operators in VHDL language.
- sll
- It means Logical Shift Left.
- It shifts the elements in the array by n places to left and fill vacanted positions with "0".
- Ex
- "1000_1010" sll 3 will give "0101_0000".
- "1000_1010" sll -2 will give "0010_0010".