aboutsummaryrefslogtreecommitdiff
path: root/src/t_top_shift.vhd
diff options
context:
space:
mode:
authorFriedrich Beckmann <friedrich.beckmann@hs-augsburg.de>2024-04-28 17:49:04 +0200
committerFriedrich Beckmann <friedrich.beckmann@hs-augsburg.de>2024-05-28 12:22:40 +0200
commit70f4b9e97d88ade1dc262d930edd27ef97de58ae (patch)
tree21add4eb9937600d98b512dabd64cd0d54cbdcfb /src/t_top_shift.vhd
parentc9f4ee68de24fcf9182c7e0d7929d894c8389688 (diff)
moved edgedetection to edge module, 6 clock design
Diffstat (limited to 'src/t_top_shift.vhd')
-rw-r--r--src/t_top_shift.vhd13
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 ;