Level/Equality

From Turing Complete
Revision as of 20:52, 28 October 2023 by Gelthor (talk | contribs) (Gelthor moved page Turing Complete/Equality to Level/Equality without leaving a redirect)

This level has you create a circuit that checks if two 8-bit values are identical.

One way to do this is to figure out how to check if two bits are identical and then scale that up. And there is a gate for that job, the XNOR Gate.

So, this becomes a matter of using two Byte Splitters to get the raw bits and then putting down an XNOR Gate for each pair. Then just use And Gates to check that all bits are equal.