Intellivision - remove IMemoryDomain and method, since it simply throws a NotImplementedException
This commit is contained in:
parent
4d3e7f806f
commit
c9958748f1
|
@ -13,7 +13,7 @@ namespace BizHawk.Emulation.Cores.Intellivision
|
||||||
isPorted: false,
|
isPorted: false,
|
||||||
isReleased: false
|
isReleased: false
|
||||||
)]
|
)]
|
||||||
public sealed partial class Intellivision : IEmulator, IMemoryDomains
|
public sealed partial class Intellivision : IEmulator
|
||||||
{
|
{
|
||||||
byte[] Rom;
|
byte[] Rom;
|
||||||
GameInfo Game;
|
GameInfo Game;
|
||||||
|
@ -197,11 +197,6 @@ namespace BizHawk.Emulation.Cores.Intellivision
|
||||||
|
|
||||||
public CoreComm CoreComm { get; private set; }
|
public CoreComm CoreComm { get; private set; }
|
||||||
|
|
||||||
public MemoryDomainList MemoryDomains
|
|
||||||
{
|
|
||||||
get { throw new NotImplementedException(); }
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue