BizHawk/BizHawk.Emulation.Cores/Consoles/Intellivision/ICart.cs

10 lines
197 B
C#

namespace BizHawk.Emulation.Cores.Intellivision
{
public interface ICart
{
int Parse(byte[] Rom);
ushort? ReadCart(ushort addr);
bool WriteCart(ushort addr, ushort value);
}
}