Commit 183c2bae authored by Theodor-Adrian Stana's avatar Theodor-Adrian Stana

Fixed bug in pulse synchronizer

The pulse synchronizer for the latest timestamp load signal implemented
as part of the previous commit was not working, due to a wrongly-connected
signal. The appropriate signal was connected and the pulse synchronization
mechanism seems to work.
parent 1a7c626a
......@@ -1011,9 +1011,10 @@ end generate;
if (rst_125_n = '0') then
lts_ld_toggle(i) <= '0';
elsif (lts_ld_125(i) = '1') then
lts_ld_toggle(i) <= not lts_ld_125(i);
lts_ld_toggle(i) <= not lts_ld_toggle(i);
else
lts_ld_toggle(i) <= lts_ld_125(i);
-- useless, but placed here for clarity of the circuit
lts_ld_toggle(i) <= lts_ld_toggle(i);
end if;
end loop;
end if;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment