Sequential Circuit
Sequential Circuit
Sequential Circuit 1
1
VNU - University of Engineering and Technology 1 Faculty of Electronics and Telecommunications
Sequential Circuits
Circuits where the output depends on both current inputs and previous outputs. (Ex. Latches, Flip-flops)
Sequential Circuit: (Clock-based logic circuit) can be either level sensitive or edge sensitive. (In practical applications mostly
edge sensitive)
(A) (B)
Run simulation Add all signal to the wave window then run all to observe and check.
Upload and verify on Board: base on the device manual to assign signal to specific pin and then click on Processing->Start
Compination to compile
module blink_led (
input clk,
input reset,
output led
);
wire divided_clock;
clock_divider CD (
.clk(clk),
.reset(reset),
.clk_1Hz(divided_clock)
);
Upload and verify on Board: base on the device manual to assign signal to specific pin and then click on Processing->Start
Compination to compile
➢ JK Flip Flop
➢ 4-bits counter using D Flip Flop
Content