namespace Essgee.Emulation.Cartridges { internal interface ICartridge : IAxiStatus { void LoadRom(byte[] data); void LoadRam(byte[] data); byte[] GetRomData(); byte[] GetRamData(); bool IsRamSaveNeeded(); ushort GetLowerBound(); ushort GetUpperBound(); void Step(int clockCyclesInStep); byte Read(ushort address); void Write(ushort address, byte value); } }