Update name and description for DivideByNCounter logic gate

This commit is contained in:
Stone_Red
2026-03-27 03:16:16 +01:00
parent 1deb90a1f0
commit 50448e2d1d
@@ -8,8 +8,8 @@ using System;
namespace StoneRed.LogicSimulator.Simulation.LogicGates;
[LogicGateName("DivideByNCounter")]
[LogicGateDescription("A clock is a circuit that oscillates between a high and a low state.")]
[LogicGateName("Divide By N Counter")]
[LogicGateDescription("A divide by N counter is a counter that divides the input frequency by N. The output is high for one tick every N ticks.")]
internal class DivideByNCounter : LogicGate, IInteractable
{
private ICircuitSimulator? circuitSimulator;