Question

AIM: Write a VHDL code for IC7474a positive edge triggering D flip flop. TITLE: IC7474a positive edge triggering D flip flop.
0 0
Add a comment Improve this question Transcribed image text
Answer #1

Here I am providing the code. Hope it helps.

VHDL Code

First problem

library ieee;
use ieee. std_logic_1164.all;


entity D_FF is
PORT( D,CLOCK: in std_logic;
Q: out std_logic);
end D_FF;

architecture behavioral of D_FF is
begin
process(CLOCK)
begin
   if(CLOCK='1' and CLOCK'EVENT) then
       Q <= D;
   end if;
end process;
end behavioral;

Thank you for the question. If any doubts please comment me.

Add a comment
Know the answer?
Add Answer to:
AIM: Write a VHDL code for IC7474a positive edge triggering D flip flop. TITLE: IC7474a positive...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT