From 33fc036bd6835332e94e88dd7fd8b3c94bb0d0a8 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Tue, 29 Aug 2017 09:29:18 -0400 Subject: [PATCH] Delete Cart7848.cs --- EMU7800/Core/Cart7848.cs | 50 ---------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 EMU7800/Core/Cart7848.cs diff --git a/EMU7800/Core/Cart7848.cs b/EMU7800/Core/Cart7848.cs deleted file mode 100644 index b9536da7eb..0000000000 --- a/EMU7800/Core/Cart7848.cs +++ /dev/null @@ -1,50 +0,0 @@ -namespace EMU7800.Core -{ - /// - /// Atari 7800 non-bankswitched 48KB cartridge - /// - public sealed class Cart7848 : Cart - { - // - // Cart Format Mapping to ROM Address Space - // 0x0000:0xc000 0x4000:0xc000 - // - - #region IDevice Members - - public override byte this[ushort addr] - { - get { return ROM[addr - 0x4000]; } - set { } - } - - #endregion - - private Cart7848() - { - } - - public Cart7848(byte[] romBytes) - { - LoadRom(romBytes, 0xc000); - } - - #region Serialization Members - - public Cart7848(DeserializationContext input, MachineBase m) : base(input) - { - input.CheckVersion(1); - LoadRom(input.ReadExpectedBytes(0xc000), 0xc000); - } - - public override void GetObjectData(SerializationContext output) - { - base.GetObjectData(output); - - output.WriteVersion(1); - output.Write(ROM); - } - - #endregion - } -} \ No newline at end of file