]> rtime.felk.cvut.cz Git - fpga/pwm.git/blobdiff - counter.vhd
MCC_EXEC entity support for multiple axes control.
[fpga/pwm.git] / counter.vhd
index 3161c631b08b98a7f571b98698e2005d2aadd621..9df0e2b86714c49dd95aa37bf1b3455f762e15cf 100644 (file)
@@ -37,20 +37,22 @@ begin
 
   
   count    <= cnt;
-  event_ow <= eq_max;
+  event_ow <= eq_max and clk_en;
 
   
   COUTER : process (clk, reset) is
   begin
-    if reset = '1' then
-      cnt <= (others => '0');
-
-    elsif rising_edge(clk) then
-      if clk_en = '1' then
-        if eq_max = '1' then
-          cnt <= (others => '0');
-        else
-          cnt <= cnt + 1;
+    if rising_edge(clk) then
+      if reset = '1' then
+        cnt <= (others => '0');
+        
+      else
+        if clk_en = '1' then
+          if eq_max = '1' then
+            cnt <= (others => '0');
+          else
+            cnt <= cnt + 1;
+          end if;
         end if;
       end if;
     end if;