2019-07-14 17:46:57 +01:00
|
|
|
|
// <copyright file="LcdcControl.cs" company="Adrian Conlon">
|
|
|
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
|
|
|
// </copyright>
|
2024-10-12 13:15:14 +01:00
|
|
|
|
|
|
|
|
|
namespace LR35902
|
2019-07-14 17:46:57 +01:00
|
|
|
|
{
|
2024-10-12 13:15:14 +01:00
|
|
|
|
using EightBit;
|
|
|
|
|
|
|
|
|
|
[Flags]
|
2020-06-22 00:00:15 +01:00
|
|
|
|
public enum LcdcControls
|
2019-07-14 17:46:57 +01:00
|
|
|
|
{
|
2019-07-28 11:50:25 +01:00
|
|
|
|
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,
|
2019-07-14 17:46:57 +01:00
|
|
|
|
}
|
|
|
|
|
}
|