From b5ca2f07de1812b51790bb20c23c326850fffbb4 Mon Sep 17 00:00:00 2001 From: beirich Date: Fri, 21 Jan 2011 07:02:48 +0000 Subject: [PATCH] NullEmulator returns a dummy memorydomain --- .../Interfaces/Base Implementations/NullEmulator.cs | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/BizHawk.Emulation/Interfaces/Base Implementations/NullEmulator.cs b/BizHawk.Emulation/Interfaces/Base Implementations/NullEmulator.cs index 49018c96ee..f7d7a922a7 100644 --- a/BizHawk.Emulation/Interfaces/Base Implementations/NullEmulator.cs +++ b/BizHawk.Emulation/Interfaces/Base Implementations/NullEmulator.cs @@ -12,6 +12,12 @@ namespace BizHawk private Random rand = new Random(); public IVideoProvider VideoProvider { get { return this; } } public ISoundProvider SoundProvider { get { return this; } } + public NullEmulator() + { + var domains = new List(1); + domains.Add(new MemoryDomain("Main RAM", 1, Endian.Little, addr=>0, (a,v)=> { })); + memoryDomains = domains.AsReadOnly(); + } public void LoadGame(IGame game) { } public void FrameAdvance(bool render) { @@ -19,7 +25,6 @@ namespace BizHawk for (int i = 0; i < 256 * 192; i++) frameBuffer[i] = Colors.Luminosity((byte)rand.Next()); } - public void HardReset() { } public ControllerDefinition ControllerDefinition { get { return NullController; } } public IController Controller { get; set; } public int Frame { get; set; } @@ -36,8 +41,8 @@ namespace BizHawk public int BufferHeight { get { return 192; } } public int BackgroundColor { get { return 0; } } public void GetSamples(short[] samples) { } - - public IList MemoryDomains { get { return new List(0); } } - public MemoryDomain MainMemory { get { return null; } } + private IList memoryDomains; + public IList MemoryDomains { get { return memoryDomains; } } + public MemoryDomain MainMemory { get { return memoryDomains[0]; } } } }