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 / harvir

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 ?    12 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what is the depletion region?

1129


What are the ways to Optimize the Performance of a Difference Amplifier?

2502


Explain how MOSFET works?

3293


What are the various regions of operation of mosfet? How are those regions used?

1182


Draw the timing diagram for a SRAM Read. What happens if we delay the enabling of Clock signal?

1184


Explain sizing of the inverter?

4485


Give the cross-sectional diagram of the cmos.

1038


What is Noise Margin? Explain the procedure to determine Noise Margin?

2509


What is the difference between the mealy and moore state machine?

1182


Mention what are the different gates where Boolean logic are applicable?

1188


How do you size NMOS and PMOS transistors to increase the threshold voltage?

3085


For a single computer processor computer system, what is the purpose of a processor cache and describe its operation?

2447


Are you familiar with the term snooping?

3608


What is the difference between cmos and bipolar technologies?

1181


Explain how Verilog is different to normal programming language?

1364