Skip to content
Divran edited this page Apr 22, 2021 · 4 revisions

Jump to table of contents

Bitwise

Number = bAnd(Number A, Number B)

Performs bitwise AND against the two numbers (2 ops)

Number = bOr(Number A, Number B)

Performs bitwise OR against the two numbers (2 ops)

Number = bXor(Number A, Number B)

Performs bitwise XOR against the two numbers (2 ops)

Number = bShr(Number A, Number B)

Performs bitwise shift right on the first number by the amount of the second (2 ops)

Number = bShl(Number A, Number B)

Performs bitwise shift left on the first number by the amount of the second (2 ops)

Number = bNot(Number N)

Performs a binary Not (2 ops)

Number = bNot(Number N, Number Bits)

Performs a binary Not. The second argument is the length of the number you wish to perform Not on in bits (2 ops)

Expression 2 ⚛️

Tutorials (In learning order) 🎓

Extras ❔

Tools 🛠️

Click To Expand

Advanced

Beacon 💡

Control 🎛️

Data 💿

Detection 👀

Display 💻

Render

I/O 🔌

Physics 🚀

Utilities 🛠️

RFID

Wireless 🛜

Gates 🚥

Click To Expand

TBD

Clone this wiki locally