Files
MCEmuCore/MCEmuCore.GBMonolith/IMemory.cs

15 lines
316 B
C#

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);
}
}