mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-08 16:31:38 +00:00
19 lines
341 B
C#
19 lines
341 B
C#
// <copyright file="StatusBits.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace LR35902
|
|
{
|
|
using EightBit;
|
|
|
|
[Flags]
|
|
public enum StatusBits
|
|
{
|
|
None = 0,
|
|
CF = Bits.Bit4,
|
|
HC = Bits.Bit5,
|
|
NF = Bits.Bit6,
|
|
ZF = Bits.Bit7,
|
|
}
|
|
}
|