Material from Jntuk Download : Click here
Saturday, 23 December 2017
Microprocessors & Microcontrollers
Material from Jntuk Download : Click here
Microwave Engineering
Download Unit 4
Material from Jntuk Download : click here
H-Plane T-Junction:
Description about H-Plane T-Junction
E-Plane T-Junction
Magic Tee Junction
Wishing You All the Best 😊😊
Microwave cutoff frequency calculator
Biomedical Engineering
Working of an Heart:
ECG Waveform:
X-Ray:
X-Ray Production:
Angioplasty:
Heart Stent:
CT Scan Procedure:
MRI Scan (Magnetic Resonance Imaging):
Previous year papers: To download previous year papers click down on the respective year
Wishing You All the Best 😊😊
Digital Communication
Shannon-Fano Coding:
Example-1
Example-2
Huffman Coding:
Tuesday, 19 December 2017
Wireless sensors and Networks
- unit 1 pdf download : click here
- unit 2 pdf download : click here
- unit 3 pdf download : click here
- unit 4 pdf download : click here
- unit 5 pdf download : click here
- unit 6 pdf download : click here
Dsd/Dica
Digital System Design
- unit 1 pdf : click here
- unit 2 pdf : click here
- unit 3 pdf : click here
- unit 4 pdf : click here
- unit 5 pdf : click here
- unit 6 pdf : click here
Sunday, 17 September 2017
Decade Counter VHDL Code
Library IEEE;
USE IEEE std_logic_1164.all;
Entity Decade is
port (clk,rst : IN std_logic;
q : OUT std_logic_vector (3 downto 0);
End Decade;
Architecture Behavioral of Decade is
Signal count : std_logic_vector (3 downto 0);
begin
Process (clk,rst)
begin
if (rst = '0') then count <= "0000" ;
elsif (clk' event and clk = '1') then
count = count+1;
end if;
if (count = "1010") then count <= "0000" ;
end if;
end process;
q <= count ;
End behavioral;
4 Bit Counter VHDL Code
Library IEEE;
USE IEEE std_logic_1164.all;
Entity Counter is
port (clk : IN std_logic;
rst : IN std_logic;
q : OUT std_logic_vector(3 downto 0);
End Counter;
Architecture Behavioral of Counter is
Signal count : std_logic_vector(3 downto 0);
begin
Process (clk,rst)
begin
if (rst = '1') then count <= "0000";
elsif (clk' event and clk = '1') then
count <= count+1;
end if;
if (count = "1111") then count <= "0000";
end if;
end process;
q <= count ;
end behavioral;
Friday, 1 September 2017
VHDL Code for D Flip Flop
Library IEEE;
USE IEEE std_logic_1164.all;
Entity D_Flip_Flop is
port(D,clr,pre,clk : IN std_logic ;
nq : Out Std_logic;
q : inout std_logic);
End D_Flip_Flop;
Architecture behavioral of D_Flip_Flop is
begin
process (clk,pre,clr)
begin
if ( pre = '0' and clr = '1' ) then q <= '1' ;
elsif ( pre = '1' and clr = '0') then q <= '0' ;
elsif ( clk' event and clk = '1') then q <= d ;
end if ;
end process ;
nq <= not q;
end behavioral ;
The respective Block diagram TTL Schematic and RTL Schematic are given below
4 Bit Comparator VHDL Code
USE IEEE.std_logic_1164.all;
USE IEEE.std_logic_arith.all;
Entity Comparator is
port(a,b : in std_logic_vector(3 downto 0);
eq,lr,gr : Out std_logic);
End Comparator;
begin
process (a,b)
begin
eq<= '0' ; gr<= '0' ; lr<= '0';
if (a=b) then eq<= '1' ;
end if;
if (a>b) then gr<= '1' ;
end if;
if (a<b) then lr<= '1' ;
end if;
end process;
end behavioral;
![]() |
| VHDL Code |
![]() |
| Block Diagram |
![]() |
| TTL Schematic |
![]() |
| RTL schematic |



