EightBitNet/LR35902/StatusBits.cs
Adrian Conlon 5a7a3b5019 Tidy up EightBit.GameBoy namespace definition.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-07-28 11:50:25 +01:00

16 lines
335 B
C#

// <copyright file="StatusBits.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace EightBit.GameBoy
{
[System.Flags]
public enum StatusBits
{
None = 0,
CF = Bits.Bit4,
HC = Bits.Bit5,
NF = Bits.Bit6,
ZF = Bits.Bit7,
}
}