Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Implement D flip-flop with a couple of latches? Write a VHDL
Code for a D flip-flop?

Answer Posted / muthu

ibrary IEEE;
use IEEE.STD_LOGIC_1164.all;

entity gh_DFF is
port(
D : in STD_LOGIC;
CLK : in STD_LOGIC;
rst : in STD_LOGIC;
Q : out STD_LOGIC
);
end gh_DFF;

architecture a of gh_DFF is
begin

process(CLK,rst)
begin
if (rst = '1') then
Q <= '0';
elsif (rising_edge(CLK)) then
Q <= D;
end if;
end process;

end a;

Is This Answer Correct ?    36 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What work have you done on full chip Clock and Power distribution? What process technology and budgets were used?

2942


How can you model a SRAM at RTL Level?

5782


How logical gates are controlled by boolean logic?

1117


What are the different classification of the timing control?

1167


What is the function of enhancement mode transistor?

1176


What types of CMOS memories have you designed? What were their size? Speed?

3192


What transistor level design tools are you proficient with? What types of designs were they used on?

3510


Draw Vds-Ids curve for a MOSFET. Now, show how this curve changes considering Channel Length Modulation.

1253


what is a sequential circuit?

1248


What are the Advantages and disadvantages of Mealy and Moore?

1346


What are the changes that are provided to meet design power targets?

1177


what is verilog?

1200


What is the purpose of having depletion mode device?

1101


What is the difference between nmos and pmos technologies?

1161


Explain what is scr (silicon controlled rectifier)?

1108