Level/Byte OR: Difference between revisions

From Turing Complete
(Put together an initial article draft. Feel free to cannibalize the writing here to improve its wording if desired.)
 
(Small sentence fixups)
Line 1: Line 1:
In the Byte OR level, your objective is to construct a circuit that can OR together two byte values.
In the Byte OR level, your objective is to construct a circuit that can OR together two byte values.


To complete this level, you will need ''eight'' '''OR''' components, as well as ''two'' '''Byte Splitters''' and ''one'' '''Byte Maker'''. Bitwise logical operations involve separating each byte into its constituent 8 bits, performing the logical one-bit operation for each bit pair between the bit pairs between the bytes, and recombining the final result for each bit.
To complete this level, you will need eight [[OR|1-bit Or]] components, as well as ''two'' [[Byte Splitter|Byte Splitters]] and ''one'' '[[Byte Maker]]. Bitwise logical operations involve separating each byte into its constituent 8 bits, performing the logical 1-bit operation for all eight pairs of bits, and recombining the final result into 1 byte.


First, you will want to connect each byte input up to their own byte splitters, so you can start working with each byte as eight discrete bits. To perform the bitwise OR operation, hook each Specifically, the first OR component should OR together the first bit of each byte, the second should OR together the second bit of each byte, the third for the third bit of each byte, and so on for all 8 bit pairs. Finally, link the output of each connected OR gate up to the corresponding bit in the Byte Maker component and link the Byte Maker's output to the level's output.
First, you will want to connect each byte input up to their own byte splitters, so you can start working with each byte as eight discrete bits. To perform the bitwise OR operation, hook each pair up to one ''OR'' component. Specifically, the first ''OR'' component should OR together the first bit of each byte, the second should OR together the second bit of each byte, the third for the third bit of each byte, and so on for all eight bit pairs. Finally, link the output of each connected ''OR'' gate up to the corresponding bit in the Byte Maker component and link the Byte Maker's output to the level's output.

Revision as of 20:50, 15 August 2024

In the Byte OR level, your objective is to construct a circuit that can OR together two byte values.

To complete this level, you will need eight 1-bit Or components, as well as two Byte Splitters and one 'Byte Maker. Bitwise logical operations involve separating each byte into its constituent 8 bits, performing the logical 1-bit operation for all eight pairs of bits, and recombining the final result into 1 byte.

First, you will want to connect each byte input up to their own byte splitters, so you can start working with each byte as eight discrete bits. To perform the bitwise OR operation, hook each pair up to one OR component. Specifically, the first OR component should OR together the first bit of each byte, the second should OR together the second bit of each byte, the third for the third bit of each byte, and so on for all eight bit pairs. Finally, link the output of each connected OR gate up to the corresponding bit in the Byte Maker component and link the Byte Maker's output to the level's output.