EightBitNet/EightBit/Mask.cs
Adrian Conlon ea82c58777 Add Z80 processor (untested, but complete)
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-02-16 21:32:34 +00:00

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,
}
}