diff --git a/rtl/aucohl_lib.v b/rtl/aucohl_lib.v index a7479c1..4010662 100644 --- a/rtl/aucohl_lib.v +++ b/rtl/aucohl_lib.v @@ -87,7 +87,7 @@ module aucohl_ticker #(parameter W=8) ( else counter <= counter - 'b1; - assign tick_w = (clk_div == 'b1) ? 1'b1 : counter_is_zero; + assign tick_w = (clk_div == 'b0) ? 1'b1 : counter_is_zero; always @(posedge clk or negedge rst_n) if(!rst_n)