1
0
Fork 0
forked from fun/fun

Web content update. (0.41.8)

This commit is contained in:
Johannes Findeisen 2026-05-08 01:32:14 +02:00
commit 9698074279
9 changed files with 42 additions and 58 deletions

View file

@ -102,7 +102,7 @@ This document provides an overview of the available VM opcodes implemented under
## Bitwise (uint32)
- OP_BAND: Bitwise AND; pops b, a; pushes a & b.
- OP_BOR: Bitwise OR; pops b, a; pushes a | b.
- OP_BOR: Bitwise OR; pops b, a; pushes a \| b.
- OP_BXOR: Bitwise XOR; pops b, a; pushes a ^ b.
- OP_BNOT: Bitwise NOT; pops a; pushes ~a.
- OP_SHL: Logical left shift; pops shift, value; pushes value << shift.
@ -112,7 +112,7 @@ This document provides an overview of the available VM opcodes implemented under
## Math
- OP_ABS: Absolute value; pops x; pushes |x|.
- OP_ABS: Absolute value; pops x; pushes \|x\|.
- OP_CEIL: Ceiling; pops x; pushes ceil(x).
- OP_FLOOR: Floor; pops x; pushes floor(x).
- OP_ROUND: Round; pops x; pushes round(x).