More opcodes, some helpers
This commit is contained in:
14
MCEmuCore.GBMonolith/IMemory.cs
Normal file
14
MCEmuCore.GBMonolith/IMemory.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user