0% found this document useful (0 votes)
29 views36 pages

Ade Lab Manual Final

The document describes a laboratory on analog and digital electronics including topics like RC circuits, diode clipping circuits, and a JK flip flop implementation in VHDL.

Uploaded by

Mahesh A.V
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views36 pages

Ade Lab Manual Final

The document describes a laboratory on analog and digital electronics including topics like RC circuits, diode clipping circuits, and a JK flip flop implementation in VHDL.

Uploaded by

Mahesh A.V
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 36

DEPARTMENT OF INFORMATION SCIENCE AND ENGINEERING

ANALOG AND DIGITAL ELECTRONICS


LABORATORY (18CSL37)

Prepared By,

RANJITHA R
Asst. Professor
Department of ISE
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
R1
R1 R2

1 1 3
T 10 1ms)
f 103

3
T 10
R 5K
2C 2 10 7

R1
Vc Vsat
R1 R2

Dept. of Information Science & Engineering, VKIT


Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
entity jk_ff is
port(j,k,cr,pr,clk:in std_logic;
q,qbar:out std_logic);
end jk_ff;
architecture behavioural of jk_ff is
signal input:std_logic_vector(1 downto 0);
begin
input<=j&k;
process(clk,j,k,pr,cr)
variable temp:std_logic:='0';
begin
if(cr='1' and pr='1')then
if rising_edge(clk) then
case input is
when "10"=> temp:='1';
when "01"=> temp:='0';
when "11"=> temp:=not temp;
when others=> null;
end case;
end if;
else
temp:='0';

Dept. of Information Science & Engineering, VKIT


end if;
q<=temp;
qbar<=not temp;
end process;
end behavioural;

Dept. of Information Science & Engineering, VKIT


Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT
Dept. of Information Science & Engineering, VKIT

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy