EightBitNet/EightBit/PinLevel.cs

13 lines
218 B
C#

// <copyright file="PinLevel.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace EightBit
{
public enum PinLevel
{
Low,
High,
}
}