Combinational and Sequential Logic Circuits Explained
Classified in Computers
Written on in
English with a size of 2.22 KB
Combinational Logic Circuits
Combinational logic is a type of digital logic implemented by Boolean circuits where the output is a pure function of present inputs only. These circuits are built to implement fixed digital logic and can be used to store a fixed set of instructions (ROM) or programmed to implement specific logic (PLD and PLA circuits).
Sequential Logic Circuits
Sequential logic differs in that the output depends not only on the present input but also on the history of all previous inputs, as these circuits possess memory.
Key Components
- Clock: A signal added to indicate when to read instructions or fetch data to the combinational circuit.
- Operations: Combining computing tasks with management to control when operations occur and how to use a sequence of operations to obtain a specific result.
Synchronous Circuits
In a synchronous circuit, memory elements receive excitations at each rising (transition from 0 to 1) or falling edge (transition from 1 to 0) of a clock.
- Flip-Flops: The basic memory cells used in synchronous circuits.
- Clock Period (T): The time interval of a clock pulse, containing at least one rising and one falling edge.
Asynchronous Circuits
In an asynchronous circuit, memory elements receive excitations at intervals determined by a combinational circuit.
- SR Latches: The memory elements used in asynchronous sequential circuits to store one bit at a time.
Fundamental Concepts
- Timing: A heartbeat that controls the sequence and time of operations.
- Memory: A means for storing information both permanently and temporarily.
State Transitions
Flip-flops are edge-triggered devices. For example, a device may respond to the falling edge of a clock (transition from 1 to 0). When creating a state transition diagram for a flip-flop change from 0 to 1, the two states of interest are Q=0 and Q=1. A common configuration is the JK flip-flop, where J=K represents the toggle state.