ABHI9868715910
Newbie level 3

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