Path: blob/master/BizHawk.Emulation.Cores/Consoles/Intellivision/ICart.cs
2 views
using BizHawk.Common;
namespace BizHawk.Emulation.Cores.Intellivision
{
public interface ICart
{
int Parse(byte[] Rom);
ushort? ReadCart(ushort addr, bool peek);
bool WriteCart(ushort addr, ushort value, bool poke);
void SyncState(Serializer ser);
}
}