Implement D flip-flop with a couple of latches? Write a VHDL
Code for a D flip-flop?
Answer Posted / rakesh
ibrary IEEE;
use IEEE.STD_LOGIC_1164.all;
entity DFlip_Flop is
port(
D : in STD_LOGIC;
CLK : in STD_LOGIC;
rst : in STD_LOGIC;
Q : out STD_LOGIC
);
end DFlip_Flop;
Architecture of DFlip_Flop is
begin
---ANother way of writing code for creating D_Flip_Flop in VHDL
process(Clk, Rst)
begin
if (Rst ='1') then
Q <= '0';
elsif(clk='1' and clk'event) then
Q <= D;
end if;
end process;
end ;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of having depletion mode device?
Mention what are the different gates where Boolean logic are applicable?
Draw Vds-Ids curve for a MOSFET. Now, show how this curve changes with increasing transistor width.
Describe a finite state machine that will detect three consecutive coin tosses (of one coin) that results in heads.
Mention what are the two types of procedural blocks in Verilog?
Explain what is multiplexer?
What is Body Effect?
Implement a function with both ratioed and domino logic and merits and demerits of each logic?
If an/ap = 0.5, an/ap = 1, an/ap = 3, for 3 inverters draw the transfer characteristics?
If not into production, how far did you follow the design and why did not you see it into production?
What are the changes that are provided to meet design power targets?
Write a VLSI program that implements a toll booth controller?
Explain the working of Insights of an inverter ?
Explain the working of Insights of a pass gate ?
What transistor level design tools are you proficient with? What types of designs were they used on?