ASHIFT int amount
int
amount
Outputs int arithmetic-shifted to the left by amount bits. If amount is negative, the shift is to the right with sign extension. The inputs must be integers.
SHOW ASHIFT 5 2 20 SHOW ASHIFT 20 -1 10 SHOW ASHIFT -20 -1 -10
SHOW ASHIFT 5 2
SHOW ASHIFT 20 -1
SHOW ASHIFT -20 -1