15 lines
316 B
C#
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);
|
|
}
|
|
}
|