EightBitNet/M6502/StatusBits.cs
Adrian Conlon 9a06b1743f Port of EightBit library to .Net (unworking!)
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-02-02 15:12:51 +00:00

33 lines
474 B
C#

namespace EightBit
{
using System;
[Flags]
public enum StatusBits : byte
{
// Negative
NF = Bits.Bit7,
// Overflow
VF = Bits.Bit6,
// reserved
RF = Bits.Bit5,
// Brk
BF = Bits.Bit4,
// D (use BCD for arithmetic)
DF = Bits.Bit3,
// I (IRQ disable)
IF = Bits.Bit2,
// Zero
ZF = Bits.Bit1,
// Carry
CF = Bits.Bit0,
}
}