mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-11-18 02:06:28 +00:00
ea82c58777
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
28 lines
711 B
C#
28 lines
711 B
C#
// <copyright file="Mask.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace EightBit
|
|
{
|
|
public enum Mask
|
|
{
|
|
None = 0,
|
|
Mask1 = Bits.Bit1 - 1,
|
|
Mask2 = Bits.Bit2 - 1,
|
|
Mask3 = Bits.Bit3 - 1,
|
|
Mask4 = Bits.Bit4 - 1,
|
|
Mask5 = Bits.Bit5 - 1,
|
|
Mask6 = Bits.Bit6 - 1,
|
|
Mask7 = Bits.Bit7 - 1,
|
|
Mask8 = Bits.Bit8 - 1,
|
|
Mask9 = Bits.Bit9 - 1,
|
|
Mask10 = Bits.Bit10 - 1,
|
|
Mask11 = Bits.Bit11 - 1,
|
|
Mask12 = Bits.Bit12 - 1,
|
|
Mask13 = Bits.Bit13 - 1,
|
|
Mask14 = Bits.Bit14 - 1,
|
|
Mask15 = Bits.Bit15 - 1,
|
|
Mask16 = Bits.Bit16 - 1,
|
|
}
|
|
}
|