More opcodes, some helpers

This commit is contained in:
2020-05-27 23:48:53 -06:00
parent 718ea88dea
commit bff3bc6546
4 changed files with 578 additions and 282 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace MCEmuCore.GBMonolith
{
interface IMemory
{
byte ReadByte(int address);
ushort ReadShort(int address);
bool WriteByte(int address, byte value);
bool WriteShort(int address, ushort value);
}
}