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:
Adrian Conlon
2019-07-14 17:46:57 +01:00
parent d0c620e709
commit 3eb3975e37
16 changed files with 2466 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
// <copyright file="AbstractColourPalette.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace EightBit
{
namespace GameBoy
{
public class AbstractColourPalette
{
private readonly uint[] colours = new uint[4];
protected AbstractColourPalette()
{ }
public uint Colour(int index) => this.colours[index];
}
}
}