Document inactive block behaviour (#447)

This commit is contained in:
Christopher Head
2018-12-21 11:10:08 -08:00
committed by Vitaliy
parent 6e767a6c76
commit 302a28934d
37 changed files with 43 additions and 9 deletions

View File

@ -1 +1,2 @@
AND gates power their output if both inputs (from left and right) are powered.
They work in unloaded blocks.

View File

@ -1 +1,2 @@
Diodes conduct signals in one direction only.
They work in unloaded blocks.

View File

@ -1 +1,2 @@
NAND gates do not power their output if both inputs (from left and right) are powered, but power it in every other case.
They work in unloaded blocks.

View File

@ -1 +1,2 @@
NOR gates only power their output if none of their two inputs is powered. They are basically OR gates with a NOT gate at their output.
They work in unloaded blocks.

View File

@ -1 +1,2 @@
NOT gates invert signals, just like a mesecon torch does, but faster. The input is at the opposite side of the output.
They work in unloaded blocks.

View File

@ -1 +1,2 @@
OR gates power their output if either of their inputs (or both) are powered. You could basically get the same behaviour with two diodes, but OR gates save some space.
They work in unloaded blocks.

View File

@ -1 +1,2 @@
XOR gates power their output if only one input is powered, they're off if either both or none of the inputs is powered.
They work in unloaded blocks.