Intellivision - remove IMemoryDomain and method, since it simply throws a NotImplementedException

This commit is contained in:
adelikat 2014-11-23 17:22:43 +00:00
parent 4d3e7f806f
commit c9958748f1
1 changed files with 1 additions and 6 deletions

View File

@ -13,7 +13,7 @@ namespace BizHawk.Emulation.Cores.Intellivision
isPorted: false,
isReleased: false
)]
public sealed partial class Intellivision : IEmulator, IMemoryDomains
public sealed partial class Intellivision : IEmulator
{
byte[] Rom;
GameInfo Game;
@ -197,11 +197,6 @@ namespace BizHawk.Emulation.Cores.Intellivision
public CoreComm CoreComm { get; private set; }
public MemoryDomainList MemoryDomains
{
get { throw new NotImplementedException(); }
}
public void Dispose()
{
}