Intellivision - mark not implemented stuff

This commit is contained in:
adelikat 2014-11-24 01:05:47 +00:00
parent bded999177
commit 72cf4ed5e1
1 changed files with 21 additions and 3 deletions

View File

@ -147,17 +147,35 @@ namespace BizHawk.Emulation.Cores.Intellivision
get { return "INTV"; }
}
[FeatureNotImplemented]
public string BoardName { get { return null; } }
public bool DeterministicEmulation { get { return true; } }
[FeatureNotImplemented]
public byte[] CloneSaveRam()
{
return null;
}
[FeatureNotImplemented]
public void StoreSaveRam(byte[] data)
{
}
[FeatureNotImplemented]
public void ClearSaveRam()
{
}
public byte[] CloneSaveRam() { return null; }
public void StoreSaveRam(byte[] data) { }
public void ClearSaveRam() { }
public bool SaveRamModified
{
[FeatureNotImplemented]
get { return false; }
[FeatureNotImplemented]
set { }
}