From 72cf4ed5e1f4b4a8ee59c6ad498536b956fe814d Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 24 Nov 2014 01:05:47 +0000 Subject: [PATCH] Intellivision - mark not implemented stuff --- .../Consoles/Intellivision/Intellivision.cs | 24 ++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs index 4351fd42df..935ad0b988 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs @@ -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 { } }