Forum Discussion
Altera_Forum
Honored Contributor
15 years agohow to use SignalTap to slow the clock of DE2
i am just wondering if any one may have an idea how to slow down 50MHZ clock in DE2 board to 1HZ , by using SignalTap
Altera_Forum
Honored Contributor
15 years agoI don't quite get the point. You certainly need to add to your existing code and redownload it to fpga.
all you need is this:
signal count : unsigned(26 downto 0);
.....
process
begin
if rising_edge(clk) then
count <= count + 1;
end if;
end process;
led_sw = count(26); -- or 25 etc