-
Notifications
You must be signed in to change notification settings - Fork 2
NOT Gate
Meredith Espinosa edited this page Dec 26, 2018
·
1 revision
The NOT gate acts like a standard logical NOT, with a few modifications. The NOT gate will output the bitwise NOT for the input value from the back. If the signal from the back is 0b11_0000 (48)
, the NOT gate will output 0b00_1111 (15)
.
The front torch can be right-clicked to change the NOT gate from bitwise mode to boolean mode. In boolean mode, if the signal from the back is 0b00_0000 (0)
, the gate will output 0b00_0001 (1)
. Otherwise, the gate will output 0b00_0000 (0)
.