Performing shifts in VHDL is done via functions:shift_left()and shift_right(). The functions take two inputs: the first is the signal to shift, the second is the number of bits to shift. Shifting is a quick way to create aShift Register. There are two types of shifts: Logical and Ar...