Files
EightBitNet/LR35902/LcdcControl.cs
2024-10-14 11:04:51 +01:00

23 lines
476 B
C#

// <copyright file="LcdcControl.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace LR35902
{
using EightBit;
[Flags]
public enum LcdcControls
{
None = 0,
BG_EN = Bits.Bit0,
OBJ_EN = Bits.Bit1,
OBJ_SIZE = Bits.Bit2,
BG_MAP = Bits.Bit3,
TILE_SEL = Bits.Bit4,
WIN_EN = Bits.Bit5,
WIN_MAP = Bits.Bit6,
LCD_EN = Bits.Bit7,
}
}