Complex Circuit Patterns
Move beyond basic arithmetic and explore sequential memory logic like latches and flip-flops.
Combinational vs. Sequential Logic
Everything built in primitive tutorials evaluates as completely Combinational Logic. This strictly means the current physical output depends exclusively on the immediate current inputs. If you turn off an adder’s inputs, the circuit entirely forgets it calculated anything.
Sequential Logic fundamentally breaks the laws of spatial progression.
The SR Latch (Memory)
A Set/Reset (SR) Latch is the absolute smallest unit of digital memory in the universe. It actively remembers its physical state entirely without continuous outer electrical injection.
To accomplish this, we forcefully cross-couple the outputs of identical NOR Gates massively mapping their outputs simultaneously backward into each other’s collision spaces. This traps an endless high-signal logic wave.
- Click SET once and disable it. Notice how the logic stays trapped ON forever?
- Click RESET once and disable it. The logic loop crashes, forcefully rewriting itself back essentially to a blank state.
You just manually operated massive volatile server memory mechanics inside your local browser!