summaryrefslogtreecommitdiff
path: root/mesecons_gates
diff options
context:
space:
mode:
authorChristopher Head <chead@chead.ca>2018-12-21 11:10:08 -0800
committerVitaliy <numzer0@yandex.ru>2018-12-21 22:10:08 +0300
commit302a28934d75a2a29f7f060eea12cb19966f3e5a (patch)
tree2f61a84bc02af0cd844038f0278fa0a178e55354 /mesecons_gates
parent6e767a6c7654748b376df22988ad656528b44911 (diff)
downloadmesecons-302a28934d75a2a29f7f060eea12cb19966f3e5a.tar
mesecons-302a28934d75a2a29f7f060eea12cb19966f3e5a.tar.gz
mesecons-302a28934d75a2a29f7f060eea12cb19966f3e5a.tar.bz2
mesecons-302a28934d75a2a29f7f060eea12cb19966f3e5a.tar.xz
mesecons-302a28934d75a2a29f7f060eea12cb19966f3e5a.zip
Document inactive block behaviour (#447)
Diffstat (limited to 'mesecons_gates')
-rw-r--r--mesecons_gates/doc/and/description.html1
-rw-r--r--mesecons_gates/doc/diode/description.html1
-rw-r--r--mesecons_gates/doc/nand/description.html1
-rw-r--r--mesecons_gates/doc/nor/description.html1
-rw-r--r--mesecons_gates/doc/not/description.html1
-rw-r--r--mesecons_gates/doc/or/description.html1
-rw-r--r--mesecons_gates/doc/xor/description.html1
7 files changed, 7 insertions, 0 deletions
diff --git a/mesecons_gates/doc/and/description.html b/mesecons_gates/doc/and/description.html
index 528839c..e8aff91 100644
--- a/mesecons_gates/doc/and/description.html
+++ b/mesecons_gates/doc/and/description.html
@@ -1 +1,2 @@
AND gates power their output if both inputs (from left and right) are powered.
+They work in unloaded blocks.
diff --git a/mesecons_gates/doc/diode/description.html b/mesecons_gates/doc/diode/description.html
index 5f82706..b96aced 100644
--- a/mesecons_gates/doc/diode/description.html
+++ b/mesecons_gates/doc/diode/description.html
@@ -1 +1,2 @@
Diodes conduct signals in one direction only.
+They work in unloaded blocks.
diff --git a/mesecons_gates/doc/nand/description.html b/mesecons_gates/doc/nand/description.html
index 69c1d4f..c46a7e1 100644
--- a/mesecons_gates/doc/nand/description.html
+++ b/mesecons_gates/doc/nand/description.html
@@ -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.
diff --git a/mesecons_gates/doc/nor/description.html b/mesecons_gates/doc/nor/description.html
index 28d66a4..7d53953 100644
--- a/mesecons_gates/doc/nor/description.html
+++ b/mesecons_gates/doc/nor/description.html
@@ -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.
diff --git a/mesecons_gates/doc/not/description.html b/mesecons_gates/doc/not/description.html
index 7538dc9..5a08423 100644
--- a/mesecons_gates/doc/not/description.html
+++ b/mesecons_gates/doc/not/description.html
@@ -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.
diff --git a/mesecons_gates/doc/or/description.html b/mesecons_gates/doc/or/description.html
index f7f5539..15d598f 100644
--- a/mesecons_gates/doc/or/description.html
+++ b/mesecons_gates/doc/or/description.html
@@ -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.
diff --git a/mesecons_gates/doc/xor/description.html b/mesecons_gates/doc/xor/description.html
index f52f3fc..74f8b5f 100644
--- a/mesecons_gates/doc/xor/description.html
+++ b/mesecons_gates/doc/xor/description.html
@@ -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.