ABHI9868715910
Newbie level 3
- Joined
- Feb 5, 2010
- Messages
- 3
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Location
- DELHI
- Activity points
- 1,315
Hi,
I have been a regular user of this forum.I have got many great ideas from this website when all the roads seems to be closing for me.
I need to implement a code for 74374(8-bit d-type flip flop) chip.
My code is
--latchin - input to latch
--latchout- output of latch
--clk-input for Pin11 (it latches the data from input to output at high-to-low transition of clk )
process(latchin,clk)
begin
if (falling_edge(clk)) then
latchout<=latchin;
end if;
end process;
I hope your there is some solution to my issue.
Abhishek
I have been a regular user of this forum.I have got many great ideas from this website when all the roads seems to be closing for me.
I need to implement a code for 74374(8-bit d-type flip flop) chip.
My code is
--latchin - input to latch
--latchout- output of latch
--clk-input for Pin11 (it latches the data from input to output at high-to-low transition of clk )
process(latchin,clk)
begin
if (falling_edge(clk)) then
latchout<=latchin;
end if;
end process;
I hope your there is some solution to my issue.
Abhishek