1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2026-04-24 12:18:26 +00:00

Add logical shift and rename arithmetic shift

This commit is contained in:
David Schmenk
2024-07-23 14:49:33 -07:00
parent ef3b3eb1b1
commit daed69e113
3 changed files with 98 additions and 44 deletions
+2 -1
View File
@@ -120,7 +120,8 @@ The DRAWL implementation comes with the following built-in functions:
- BITAND() = Bit-wise AND
- BITOR() = Bit-wise OR
- BITXOR= Bit-wise XOR
- SHIFT() = Bit-wise SHIFT (positive = left, negative = right)
- ARITHSHIFT() = Bit-wise arithmetic SHIFT (positive = left, negative = right)
- LOGICSHIFT() = Bit-wise logicalal SHIFT (positive = left, negative = right)
- ROTATE() = Bit-wise ROTATE (positive = left, negative = right)
### Floating Point (from the SANE library)