mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-11-16 05:05:09 +00:00
5a7a3b5019
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
18 lines
570 B
C#
18 lines
570 B
C#
// <copyright file="Interrupts.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
namespace EightBit.GameBoy
|
|
{
|
|
// IF and IE flags
|
|
[System.Flags]
|
|
public enum Interrupts
|
|
{
|
|
None = 0,
|
|
VerticalBlank = Bits.Bit0, // VBLANK
|
|
DisplayControlStatus = Bits.Bit1, // LCDC Status
|
|
TimerOverflow = Bits.Bit2, // Timer Overflow
|
|
SerialTransfer = Bits.Bit3, // Serial Transfer
|
|
KeypadPressed = Bits.Bit4, // Hi-Lo transition of P10-P13
|
|
}
|
|
}
|