diff options
author | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2024-04-28 17:49:04 +0200 |
---|---|---|
committer | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2024-05-28 12:22:40 +0200 |
commit | 70f4b9e97d88ade1dc262d930edd27ef97de58ae (patch) | |
tree | 21add4eb9937600d98b512dabd64cd0d54cbdcfb /src/t_top_shift.vhd | |
parent | c9f4ee68de24fcf9182c7e0d7929d894c8389688 (diff) |
moved edgedetection to edge module, 6 clock design
Diffstat (limited to 'src/t_top_shift.vhd')
-rw-r--r-- | src/t_top_shift.vhd | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/t_top_shift.vhd b/src/t_top_shift.vhd index ddf76a1..e789c85 100644 --- a/src/t_top_shift.vhd +++ b/src/t_top_shift.vhd @@ -45,10 +45,17 @@ begin wait until falling_edge(sim_clk); end loop; sim_x <= '1'; - wait until falling_edge(sim_clk); - wait until falling_edge(sim_clk); + wait for 100 ns; sim_x <= '0'; - wait for 200 ns; + wait for 40 ns; + sim_x <= '1'; + wait for 100 ns; + sim_x <= '0'; + wait for 100 ns; + sim_x <= '1'; + wait for 40 ns; + sim_x <= '0'; + wait for 100 ns; simstop <= true; wait; end process ; |