Level/XOR Gate

From Turing Complete
Revision as of 19:15, 6 February 2023 by w:c:strategywiki>Henke37 (First achievement challenge)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This level has you create the XOR Gate. It is like the OR gate except that it outputs false if both inputs are true.

Template:Achievement

XOR Gate Truth Table
Input One Input Two Output
False False False
False True True
True False True
True True False

The solution to this level requires more effort than just placing down a single NAND gate and some inverters.

The simplest solution, which is also required for the achievement, is to place four NAND gates. The first one has the input pins as the input, while the second and third have one of the input pins and the output of the first gate as the inputs. The final gate has the inputs hooked up to the second and third gate.