Starship EVO Wiki
Advertisement


Logic Gates are bricks used to carry and alter binary logical signals.

Logic Gates can be linked to receive input(s) from Buttons, Switches, Sensors, Sliders, Timers and other Logic Gates. A Logic Gate processes one or more inputs to produce an output. The face of the Logic Gate brick indicates the type. The type can be set by interacting with the gate.

Types of Gate[ | ]

Gatesymbols

The types of binary logic gates currently present in-game

Or gate icon

OR[ | ]

Will activate if any Input is active.

OR
x y = z
0 0 0
0 1 1
1 0 1
1 1 1
And gate icon

AND[ | ]

Will activate if all Inputs are active.

AND
x y = z
0 0 0
0 1 0
1 0 0
1 1 1
Xor gate icon

XOR[ | ]

Will activate if an odd number of inputs are active

XOR
x y = z
0 0 0
0 1 1
1 0 1
1 1 0
Nor gate icon

NOR[ | ]

Will activate if all Inputs are inactive.

NOR
x y = z
0 0 1
0 1 0
1 0 0
1 1 0
Nand gate icon

NAND[ | ]

Will activate if any Input is inactive.

NAND
x y = z
0 0 1
0 1 1
1 0 1
1 1 0
Xnor gate icon

XNOR[ | ]

Will activate if an even number of inputs are active

XNOR
x y = z
0 0 1
0 1 0
1 0 0
1 1 1


Advertisement