2019-02-04 23:52:21 +00:00
|
|
|
|
// <copyright file="Mask.cs" company="Adrian Conlon">
|
|
|
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
|
|
|
// </copyright>
|
2019-02-02 15:12:51 +00:00
|
|
|
|
|
|
|
|
|
namespace EightBit
|
|
|
|
|
{
|
|
|
|
|
public enum Mask
|
|
|
|
|
{
|
|
|
|
|
None = 0,
|
2020-06-22 00:00:15 +01:00
|
|
|
|
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,
|
2019-02-02 15:12:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|