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>
20 lines
580 B
C#
20 lines
580 B
C#
// <copyright file="LcdcControl.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
namespace EightBit.GameBoy
|
|
{
|
|
[System.Flags]
|
|
public enum LcdcControl
|
|
{
|
|
None = 0,
|
|
DisplayBackground = Bits.Bit0,
|
|
ObjectEnable = Bits.Bit1,
|
|
ObjectBlockCompositionSelection = Bits.Bit2,
|
|
BackgroundCodeAreaSelection = Bits.Bit3,
|
|
BackgroundCharacterDataSelection = Bits.Bit4,
|
|
WindowEnable = Bits.Bit5,
|
|
WindowCodeAreaSelection = Bits.Bit6,
|
|
LcdEnable = Bits.Bit7,
|
|
}
|
|
}
|