In that code, upon reset the exponential counter period is set to 1, and the exponential counter = set to 0.
cycles_per_frame = 19656 rate_period = 31251 rc=0 for frame in range(40): gate_on_ticks = 0 for i in range(cycles_per_frame*2): rc+=1 if rc==rate_period: rc=0 gate_on_ticks+=1 gate_off_ticks = 0 for i in range(cycles_per_frame*2): rc+=1 if rc==rate_period: rc=0 gate_off_ticks+=1 print("frame {:3d}: {} attack ticks, {} decay ticks".format (frame*4, gate_on_ticks, gate_off_ticks))