EightBitNet/LR35902/StatusBits.cs
Adrian Conlon 3eb3975e37 Add an initial stab at LR35902 (aka GameBoy) support. Untested and no disassembler though...
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-07-14 17:46:57 +01:00

19 lines
397 B
C#

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