Now works on iCEstick
[yule.git] / prescaler.v
index 368a94fe0c5d1bdd9e7912f7e959307bb4a8482b..86a445fc1eba5a4635814e8b94c3fb9914b37a12 100644 (file)
@@ -1,15 +1,11 @@
 // Prescalar with default 16 bit division
 
 module PRESCALER #(parameter BITS = 16) (input clk, output out);
-   
     reg [BITS-1:0] counter = 0;
-    always @ (posedge clk) begin      
-    
+
+    always @ (posedge clk) begin
         counter <= counter + 1;
-    
     end
 
    assign out = counter[BITS-1];
-   
 endmodule
This page took 0.009294 seconds and 4 git commands to generate.