Page 1 of 1

Ticks twice

Posted: Thu Aug 31, 2023 3:50 pm
by Midge
Image
CC (1T) -> DC (if R=0, output XT) -> DC (if T>60, output 1R) -> DC (if F=0, output XR)
*Constant Combinator, Decider Combinator, their properties are listed left to right

I'm trying to make a clock but I'm using the Reset value of the Tick counter as the Second counter, the issue I'm having is the Reset value ticks twice. While yes I can simply double the seconds asked of whatever relies on the timer, but I would like to mitigate this instead.


For if you want a closer look

Re: Ticks twice

Posted: Thu Aug 31, 2023 3:58 pm
by Midge
I did check the editor and see that the reset value persists for two ticks, for one to reset, and the one after that for some reason, even though the condition is no longer met, I guess it has to make the round trip, aka R->T=0->T no longer greater than 60, which takes several ticks

Re: Ticks twice

Posted: Thu Aug 31, 2023 4:59 pm
by Midge
Fixed it by not using the reset value

Re: Ticks twice

Posted: Wed Sep 06, 2023 1:14 pm
by FuryoftheStars
Each device takes 1 tick to process its input and then submit a new output, so when connecting them in series like that, you'll get a 1 tick per device delay.