mirror of
https://github.com/Stone-Red-Code/StoneRed.LogicSimulator.git
synced 2026-09-04 09:06:29 +02:00
13 lines
150 B
C#
13 lines
150 B
C#
namespace StoneRed.LogicSimulator.Simulation;
|
|
|
|
public enum GateKind : byte
|
|
{
|
|
Source,
|
|
Not,
|
|
And2,
|
|
Or2,
|
|
Buffer,
|
|
Sink,
|
|
Lut,
|
|
}
|