EightBitNet/EightBit/Mask.cs
Adrian Conlon cd4af67177 Work my way through a bunch of the analysis suggestions.
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
2020-06-22 00:00:15 +01:00

28 lines
705 B
C#

// <copyright file="Mask.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace EightBit
{
public enum Mask
{
None = 0,
One = Bits.Bit1 - 1,
Two = Bits.Bit2 - 1,
Three = Bits.Bit3 - 1,
Four = Bits.Bit4 - 1,
Five = Bits.Bit5 - 1,
Six = Bits.Bit6 - 1,
Seven = Bits.Bit7 - 1,
Eight = Bits.Bit8 - 1,
Nine = Bits.Bit9 - 1,
Ten = Bits.Bit10 - 1,
Eleven = Bits.Bit11 - 1,
Twelve = Bits.Bit12 - 1,
Thirteen = Bits.Bit13 - 1,
Fourteen = Bits.Bit14 - 1,
Fifteen = Bits.Bit15 - 1,
Sixteen = Bits.Bit16 - 1,
}
}