mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-11-04 04:05:12 +00:00
19 lines
397 B
C#
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,
|
|||
|
}
|
|||
|
}
|
|||
|
}
|