mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-02-02 12:30:58 +00:00
23 lines
587 B
C#
23 lines
587 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,
|
|
DisplayBackground = Bits.Bit0,
|
|
ObjectEnable = Bits.Bit1,
|
|
ObjectBlockCompositionSelection = Bits.Bit2,
|
|
BackgroundCodeAreaSelection = Bits.Bit3,
|
|
BackgroundCharacterDataSelection = Bits.Bit4,
|
|
WindowEnable = Bits.Bit5,
|
|
WindowCodeAreaSelection = Bits.Bit6,
|
|
LcdEnable = Bits.Bit7,
|
|
}
|
|
}
|