mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-04-20 06:16:43 +00:00
Add an initial stab at LR35902 (aka GameBoy) support. Untested and no disassembler though...
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
// <copyright file="LcdcControl.cs" company="Adrian Conlon">
|
||||
// Copyright (c) Adrian Conlon. All rights reserved.
|
||||
// </copyright>
|
||||
namespace EightBit
|
||||
{
|
||||
namespace 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
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user