From 8ace0d5f2e3e4c4f302ed8e1b4eea5456c96010d Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 13 Apr 2015 21:58:53 +0000 Subject: [PATCH] oops, forgot to add this file --- .../AppleII/AppleII.IMemoryDomains.cs | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 BizHawk.Emulation.Cores/Computers/AppleII/AppleII.IMemoryDomains.cs diff --git a/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.IMemoryDomains.cs b/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.IMemoryDomains.cs new file mode 100644 index 0000000000..9501b01d23 --- /dev/null +++ b/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.IMemoryDomains.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; + +using BizHawk.Emulation.Common; + +namespace BizHawk.Emulation.Cores.Computers.AppleII +{ + public partial class AppleII + { + private void SetupMemoryDomains() + { + var domains = new List(); + + //_machine.Memory.Read + var systemBusDomain = new MemoryDomain("System Bus", 0x10000, MemoryDomain.Endian.Little, + (addr) => + { + if (addr < 0 || addr >= 65536) + throw new ArgumentOutOfRangeException(); + return (byte)_machine.Memory.Read((int)addr); + }, + (addr, value) => + { + if (addr < 0 || addr >= 65536) + throw new ArgumentOutOfRangeException(); + _machine.Memory.Write((int)addr, value); + }); + + domains.Add(systemBusDomain); + + _memoryDomains = new MemoryDomainList(domains); + (ServiceProvider as BasicServiceProvider).Register(_memoryDomains); + } + + private IMemoryDomains _memoryDomains; + } +}