Verilog HDL Program for JK flip flop using RS flip flop

VHDL Program for JK flip flop using RS flip flop.

1
2
3
4
5
6
7
8
	module sr2jk(q,q1,j,k,clk);
	output q,q1;
	input j,k,clk;
	and1 u1(w,j,q1);
	inv u4(k1,k);
	and1 u2(x,k1,q);
	srff u3(q,q1,x,w,clk);
	endmodule
Simulated Waveform for JK flip flop using RS flip flop
Simulated Waveform for JK flip flop using RS flip flop
Ansten Lobo

Leave a Reply

Your email address will not be published. Required fields are marked *

Get the latest updates on your inbox

Be the first to receive the latest updates from Codesdoc by signing up to our email subscription.

    StudentProjects.in