From 2de20e956b9012b0af41024c316ff74b3b376de1 Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 25 Apr 2017 08:28:06 -0500 Subject: [PATCH] use Dictionary initializers instead of object initializers for various GetCpuFlagsAndRegisters() methods --- .../Calculator/TI83.IDebuggable.cs | 62 +++++++++---------- BizHawk.Emulation.Cores/Calculator/TI83.cs | 4 +- .../Atari/2600/Atari2600.IDebuggable.cs | 26 ++++---- .../Atari/7800/Atari7800.IDebuggable.cs | 26 ++++---- .../Coleco/ColecoVision.IDebuggable.cs | 60 +++++++++--------- .../Nintendo/Gameboy/Gambatte.IDebuggable.cs | 20 +++--- .../Consoles/Nintendo/NES/NES.IDebuggable.cs | 26 ++++---- .../Nintendo/SNES/LibsnesCore.IDebuggable.cs | 46 +++++++------- .../PC Engine/PCEngine.IDebuggable.cs | 26 ++++---- .../Consoles/Sega/SMS/SMS.IDebuggable.cs | 60 +++++++++--------- 10 files changed, 177 insertions(+), 179 deletions(-) diff --git a/BizHawk.Emulation.Cores/Calculator/TI83.IDebuggable.cs b/BizHawk.Emulation.Cores/Calculator/TI83.IDebuggable.cs index 9c9ab5c07a..1574e819d7 100644 --- a/BizHawk.Emulation.Cores/Calculator/TI83.IDebuggable.cs +++ b/BizHawk.Emulation.Cores/Calculator/TI83.IDebuggable.cs @@ -12,36 +12,36 @@ namespace BizHawk.Emulation.Cores.Calculators { return new Dictionary { - { "A", Cpu.RegisterA }, - { "AF", Cpu.RegisterAF }, - { "B", Cpu.RegisterB }, - { "BC", Cpu.RegisterBC }, - { "C", Cpu.RegisterC }, - { "D", Cpu.RegisterD }, - { "DE", Cpu.RegisterDE }, - { "E", Cpu.RegisterE }, - { "F", Cpu.RegisterF }, - { "H", Cpu.RegisterH }, - { "HL", Cpu.RegisterHL }, - { "I", Cpu.RegisterI }, - { "IX", Cpu.RegisterIX }, - { "IY", Cpu.RegisterIY }, - { "L", Cpu.RegisterL }, - { "PC", Cpu.RegisterPC }, - { "R", Cpu.RegisterR }, - { "Shadow AF", Cpu.RegisterShadowAF }, - { "Shadow BC", Cpu.RegisterShadowBC }, - { "Shadow DE", Cpu.RegisterShadowDE }, - { "Shadow HL", Cpu.RegisterShadowHL }, - { "SP", Cpu.RegisterSP }, - { "Flag C", Cpu.RegisterF.Bit(0) }, - { "Flag N", Cpu.RegisterF.Bit(1) }, - { "Flag P/V", Cpu.RegisterF.Bit(2) }, - { "Flag 3rd", Cpu.RegisterF.Bit(3) }, - { "Flag H", Cpu.RegisterF.Bit(4) }, - { "Flag 5th", Cpu.RegisterF.Bit(5) }, - { "Flag Z", Cpu.RegisterF.Bit(6) }, - { "Flag S", Cpu.RegisterF.Bit(7) } + ["A"] = Cpu.RegisterA, + ["AF"] = Cpu.RegisterAF, + ["B"] = Cpu.RegisterB, + ["BC"] = Cpu.RegisterBC, + ["C"] = Cpu.RegisterC, + ["D"] = Cpu.RegisterD, + ["DE"] = Cpu.RegisterDE, + ["E"] = Cpu.RegisterE, + ["F"] = Cpu.RegisterF, + ["H"] = Cpu.RegisterH, + ["HL"] = Cpu.RegisterHL, + ["I"] = Cpu.RegisterI, + ["IX"] = Cpu.RegisterIX, + ["IY"] = Cpu.RegisterIY, + ["L"] = Cpu.RegisterL, + ["PC"] = Cpu.RegisterPC, + ["R"] = Cpu.RegisterR, + ["Shadow AF"] = Cpu.RegisterShadowAF, + ["Shadow BC"] = Cpu.RegisterShadowBC, + ["Shadow DE"] = Cpu.RegisterShadowDE, + ["Shadow HL"] = Cpu.RegisterShadowHL, + ["SP"] = Cpu.RegisterSP, + ["Flag C"] = Cpu.RegisterF.Bit(0), + ["Flag N"] = Cpu.RegisterF.Bit(1), + ["Flag P/V"] = Cpu.RegisterF.Bit(2), + ["Flag 3rd"] = Cpu.RegisterF.Bit(3), + ["Flag H"] = Cpu.RegisterF.Bit(4), + ["Flag 5th"] = Cpu.RegisterF.Bit(5), + ["Flag Z"] = Cpu.RegisterF.Bit(6), + ["Flag S"] = Cpu.RegisterF.Bit(7) }; } @@ -120,7 +120,7 @@ namespace BizHawk.Emulation.Cores.Calculators } } - public IMemoryCallbackSystem MemoryCallbacks { get; } + public IMemoryCallbackSystem MemoryCallbacks { get; } = new MemoryCallbackSystem(); [FeatureNotImplemented] public void Step(StepType type) diff --git a/BizHawk.Emulation.Cores/Calculator/TI83.cs b/BizHawk.Emulation.Cores/Calculator/TI83.cs index e5c3e878cf..5ba4a7ad72 100644 --- a/BizHawk.Emulation.Cores/Calculator/TI83.cs +++ b/BizHawk.Emulation.Cores/Calculator/TI83.cs @@ -11,8 +11,7 @@ namespace BizHawk.Emulation.Cores.Calculators "TI83Hawk", "zeromus", isPorted: false, - isReleased: true - )] + isReleased: true)] [ServiceNotApplicable(typeof(ISoundProvider), typeof(ISaveRam), typeof(IRegionable), typeof(IDriveLight))] public partial class TI83 : IEmulator, IVideoProvider, IStatable, IDebuggable, IInputPollable, ISettable { @@ -37,7 +36,6 @@ namespace BizHawk.Emulation.Cores.Calculators // different calculators (different revisions?) have different initPC. we track this in the game database by rom hash // if( *(unsigned long *)(m_pRom + 0x6ce) == 0x04D3163E ) m_Regs.PC.W = 0x6ce; //KNOWN // else if( *(unsigned long *)(m_pRom + 0x6f6) == 0x04D3163E ) m_Regs.PC.W = 0x6f6; //UNKNOWN - if (game["initPC"]) { _startPC = ushort.Parse(game.OptionValue("initPC"), NumberStyles.HexNumber); diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.IDebuggable.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.IDebuggable.cs index d4a8eca0ae..cf7ae45ba1 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.IDebuggable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.IDebuggable.cs @@ -11,21 +11,21 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 { return new Dictionary { - { "A", Cpu.A }, - { "X", Cpu.X }, - { "Y", Cpu.Y }, - { "S", Cpu.S }, - { "PC", Cpu.PC }, + ["A"] = Cpu.A, + ["X"] = Cpu.X, + ["Y"] = Cpu.Y, + ["S"] = Cpu.S, + ["PC"] = Cpu.PC, - { "Flag C", Cpu.FlagC }, - { "Flag Z", Cpu.FlagZ }, - { "Flag I", Cpu.FlagI }, - { "Flag D", Cpu.FlagD }, + ["Flag C"] = Cpu.FlagC, + ["Flag Z"] = Cpu.FlagZ, + ["Flag I"] = Cpu.FlagI, + ["Flag D"] = Cpu.FlagD, - { "Flag B", Cpu.FlagB }, - { "Flag V", Cpu.FlagV }, - { "Flag N", Cpu.FlagN }, - { "Flag T", Cpu.FlagT } + ["Flag B"] = Cpu.FlagB, + ["Flag V"] = Cpu.FlagV, + ["Flag N"] = Cpu.FlagN, + ["Flag T"] = Cpu.FlagT }; } diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.IDebuggable.cs b/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.IDebuggable.cs index e3db22ec51..44c3d0f4e8 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.IDebuggable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.IDebuggable.cs @@ -11,19 +11,19 @@ namespace BizHawk.Emulation.Cores.Atari.Atari7800 { return new Dictionary { - { "A", theMachine.CPU.A }, - { "P", theMachine.CPU.P }, - { "PC", theMachine.CPU.PC }, - { "S", theMachine.CPU.S }, - { "X", theMachine.CPU.X }, - { "Y", theMachine.CPU.Y }, - { "Flag B", theMachine.CPU.fB }, - { "Flag C", theMachine.CPU.fC }, - { "Flag D", theMachine.CPU.fD }, - { "Flag I", theMachine.CPU.fI }, - { "Flag N", theMachine.CPU.fN }, - { "Flag V", theMachine.CPU.fV }, - { "Flag Z", theMachine.CPU.fZ } + ["A"] = theMachine.CPU.A, + ["P"] = theMachine.CPU.P, + ["PC"] = theMachine.CPU.PC, + ["S"] = theMachine.CPU.S, + ["X"] = theMachine.CPU.X, + ["Y"] = theMachine.CPU.Y, + ["Flag B"] = theMachine.CPU.fB, + ["Flag C"] = theMachine.CPU.fC, + ["Flag D"] = theMachine.CPU.fD, + ["Flag I"] = theMachine.CPU.fI, + ["Flag N"] = theMachine.CPU.fN, + ["Flag V"] = theMachine.CPU.fV, + ["Flag Z"] = theMachine.CPU.fZ }; } diff --git a/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.IDebuggable.cs b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.IDebuggable.cs index 79a3899bd6..62a69601dd 100644 --- a/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.IDebuggable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.IDebuggable.cs @@ -12,36 +12,36 @@ namespace BizHawk.Emulation.Cores.ColecoVision { return new Dictionary { - { "A", Cpu.RegisterA }, - { "AF", Cpu.RegisterAF }, - { "B", Cpu.RegisterB }, - { "BC", Cpu.RegisterBC }, - { "C", Cpu.RegisterC }, - { "D", Cpu.RegisterD }, - { "DE", Cpu.RegisterDE }, - { "E", Cpu.RegisterE }, - { "F", Cpu.RegisterF }, - { "H", Cpu.RegisterH }, - { "HL", Cpu.RegisterHL }, - { "I", Cpu.RegisterI }, - { "IX", Cpu.RegisterIX }, - { "IY", Cpu.RegisterIY }, - { "L", Cpu.RegisterL }, - { "PC", Cpu.RegisterPC }, - { "R", Cpu.RegisterR }, - { "Shadow AF", Cpu.RegisterShadowAF }, - { "Shadow BC", Cpu.RegisterShadowBC }, - { "Shadow DE", Cpu.RegisterShadowDE }, - { "Shadow HL", Cpu.RegisterShadowHL }, - { "SP", Cpu.RegisterSP }, - { "Flag C", Cpu.RegisterF.Bit(0) }, - { "Flag N", Cpu.RegisterF.Bit(1) }, - { "Flag P/V", Cpu.RegisterF.Bit(2) }, - { "Flag 3rd", Cpu.RegisterF.Bit(3) }, - { "Flag H", Cpu.RegisterF.Bit(4) }, - { "Flag 5th", Cpu.RegisterF.Bit(5) }, - { "Flag Z", Cpu.RegisterF.Bit(6) }, - { "Flag S", Cpu.RegisterF.Bit(7) } + ["A"] = Cpu.RegisterA, + ["AF"] = Cpu.RegisterAF, + ["B"] = Cpu.RegisterB, + ["BC"] = Cpu.RegisterBC, + ["C"] = Cpu.RegisterC, + ["D"] = Cpu.RegisterD, + ["DE"] = Cpu.RegisterDE, + ["E"] = Cpu.RegisterE, + ["F"] = Cpu.RegisterF, + ["H"] = Cpu.RegisterH, + ["HL"] = Cpu.RegisterHL, + ["I"] = Cpu.RegisterI, + ["IX"] = Cpu.RegisterIX, + ["IY"] = Cpu.RegisterIY, + ["L"] = Cpu.RegisterL, + ["PC"] = Cpu.RegisterPC, + ["R"] = Cpu.RegisterR, + ["Shadow AF"] = Cpu.RegisterShadowAF, + ["Shadow BC"] = Cpu.RegisterShadowBC, + ["Shadow DE"] = Cpu.RegisterShadowDE, + ["Shadow HL"] = Cpu.RegisterShadowHL, + ["SP"] = Cpu.RegisterSP, + ["Flag C"] = Cpu.RegisterF.Bit(0), + ["Flag N"] = Cpu.RegisterF.Bit(1), + ["Flag P/V"] = Cpu.RegisterF.Bit(2), + ["Flag 3rd"] = Cpu.RegisterF.Bit(3), + ["Flag H"] = Cpu.RegisterF.Bit(4), + ["Flag 5th"] = Cpu.RegisterF.Bit(5), + ["Flag Z"] = Cpu.RegisterF.Bit(6), + ["Flag S"] = Cpu.RegisterF.Bit(7) }; } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.IDebuggable.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.IDebuggable.cs index 647861aea8..4f910a677d 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.IDebuggable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.IDebuggable.cs @@ -15,16 +15,16 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy return new Dictionary { - { "PC", (ushort)(data[(int)LibGambatte.RegIndicies.PC] & 0xffff) }, - { "SP", (ushort)(data[(int)LibGambatte.RegIndicies.SP] & 0xffff) }, - { "A", (byte)(data[(int)LibGambatte.RegIndicies.A] & 0xff) }, - { "B", (byte)(data[(int)LibGambatte.RegIndicies.B] & 0xff) }, - { "C", (byte)(data[(int)LibGambatte.RegIndicies.C] & 0xff) }, - { "D", (byte)(data[(int)LibGambatte.RegIndicies.D] & 0xff) }, - { "E", (byte)(data[(int)LibGambatte.RegIndicies.E] & 0xff) }, - { "F", (byte)(data[(int)LibGambatte.RegIndicies.F] & 0xff) }, - { "H", (byte)(data[(int)LibGambatte.RegIndicies.H] & 0xff) }, - { "L", (byte)(data[(int)LibGambatte.RegIndicies.L] & 0xff) } + ["PC"] = (ushort)(data[(int)LibGambatte.RegIndicies.PC] & 0xffff), + ["SP"] = (ushort)(data[(int)LibGambatte.RegIndicies.SP] & 0xffff), + ["A"] = (byte)(data[(int)LibGambatte.RegIndicies.A] & 0xff), + ["B"] = (byte)(data[(int)LibGambatte.RegIndicies.B] & 0xff), + ["C"] = (byte)(data[(int)LibGambatte.RegIndicies.C] & 0xff), + ["D"] = (byte)(data[(int)LibGambatte.RegIndicies.D] & 0xff), + ["E"] = (byte)(data[(int)LibGambatte.RegIndicies.E] & 0xff), + ["F"] = (byte)(data[(int)LibGambatte.RegIndicies.F] & 0xff), + ["H"] = (byte)(data[(int)LibGambatte.RegIndicies.H] & 0xff), + ["L"] = (byte)(data[(int)LibGambatte.RegIndicies.L] & 0xff) }; } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.IDebuggable.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.IDebuggable.cs index b152052814..d1fe787ab8 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.IDebuggable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.IDebuggable.cs @@ -11,19 +11,19 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES { return new Dictionary { - { "A", cpu.A }, - { "X", cpu.X }, - { "Y", cpu.Y }, - { "S", cpu.S }, - { "PC", cpu.PC }, - { "Flag C", cpu.FlagC }, - { "Flag Z", cpu.FlagZ }, - { "Flag I", cpu.FlagI }, - { "Flag D", cpu.FlagD }, - { "Flag B", cpu.FlagB }, - { "Flag V", cpu.FlagV }, - { "Flag N", cpu.FlagN }, - { "Flag T", cpu.FlagT } + ["A"] = cpu.A, + ["X"] = cpu.X, + ["Y"] = cpu.Y, + ["S"] = cpu.S, + ["PC"] = cpu.PC, + ["Flag C"] = cpu.FlagC, + ["Flag Z"] = cpu.FlagZ, + ["Flag I"] = cpu.FlagI, + ["Flag D"] = cpu.FlagD, + ["Flag B"] = cpu.FlagB, + ["Flag V"] = cpu.FlagV, + ["Flag N"] = cpu.FlagN, + ["Flag T"] = cpu.FlagT }; } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.IDebuggable.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.IDebuggable.cs index 6a96af1806..efc27e4288 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.IDebuggable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.IDebuggable.cs @@ -23,29 +23,29 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES return new Dictionary { - { "PC", regs.pc }, - { "A", regs.a }, - { "X", regs.x }, - { "Y", regs.y }, - { "Z", regs.z }, - { "S", regs.s }, - { "D", regs.d }, - { "Vector", regs.vector }, - { "P", regs.p }, - { "AA", regs.aa }, - { "RD", regs.rd }, - { "SP", regs.sp }, - { "DP", regs.dp }, - { "DB", regs.db }, - { "MDR", regs.mdr }, - { "Flag N", fn }, - { "Flag V", fv }, - { "Flag M", fm }, - { "Flag X", fx }, - { "Flag D", fd }, - { "Flag I", fi }, - { "Flag Z", fz }, - { "Flag C", fc }, + ["PC"] = regs.pc, + ["A"] = regs.a, + ["X"] = regs.x, + ["Y"] = regs.y, + ["Z"] = regs.z, + ["S"] = regs.s, + ["D"] = regs.d, + ["Vector"] = regs.vector, + ["P"] = regs.p, + ["AA"] = regs.aa, + ["RD"] = regs.rd, + ["SP"] = regs.sp, + ["DP"] = regs.dp, + ["DB"] = regs.db, + ["MDR"] = regs.mdr, + ["Flag N"] = fn, + ["Flag V"] = fv, + ["Flag M"] = fm, + ["Flag X"] = fx, + ["Flag D"] = fd, + ["Flag I"] = fi, + ["Flag Z"] = fz, + ["Flag C"] = fc, }; } diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.IDebuggable.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.IDebuggable.cs index 82f8b2d377..9027b5a312 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.IDebuggable.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.IDebuggable.cs @@ -11,19 +11,19 @@ namespace BizHawk.Emulation.Cores.PCEngine { return new Dictionary { - { "A", Cpu.A }, - { "X", Cpu.X }, - { "Y", Cpu.Y }, - { "PC", Cpu.PC }, - { "S", Cpu.S }, - { "MPR-0", Cpu.MPR[0] }, - { "MPR-1", Cpu.MPR[1] }, - { "MPR-2", Cpu.MPR[2] }, - { "MPR-3", Cpu.MPR[3] }, - { "MPR-4", Cpu.MPR[4] }, - { "MPR-5", Cpu.MPR[5] }, - { "MPR-6", Cpu.MPR[6] }, - { "MPR-7", Cpu.MPR[7] } + ["A"] = Cpu.A, + ["X"] = Cpu.X, + ["Y"] = Cpu.Y, + ["PC"] = Cpu.PC, + ["S"] = Cpu.S, + ["MPR-0"] = Cpu.MPR[0], + ["MPR-1"] = Cpu.MPR[1], + ["MPR-2"] = Cpu.MPR[2], + ["MPR-3"] = Cpu.MPR[3], + ["MPR-4"] = Cpu.MPR[4], + ["MPR-5"] = Cpu.MPR[5], + ["MPR-6"] = Cpu.MPR[6], + ["MPR-7"] = Cpu.MPR[7] }; } diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.IDebuggable.cs b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.IDebuggable.cs index f83b6530f5..973f3e78b7 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.IDebuggable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.IDebuggable.cs @@ -12,36 +12,36 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem { return new Dictionary { - { "A", Cpu.RegisterA }, - { "AF", Cpu.RegisterAF }, - { "B", Cpu.RegisterB }, - { "BC", Cpu.RegisterBC }, - { "C", Cpu.RegisterC }, - { "D", Cpu.RegisterD }, - { "DE", Cpu.RegisterDE }, - { "E", Cpu.RegisterE }, - { "F", Cpu.RegisterF }, - { "H", Cpu.RegisterH }, - { "HL", Cpu.RegisterHL }, - { "I", Cpu.RegisterI }, - { "IX", Cpu.RegisterIX }, - { "IY", Cpu.RegisterIY }, - { "L", Cpu.RegisterL }, - { "PC", Cpu.RegisterPC }, - { "R", Cpu.RegisterR }, - { "Shadow AF", Cpu.RegisterShadowAF }, - { "Shadow BC", Cpu.RegisterShadowBC }, - { "Shadow DE", Cpu.RegisterShadowDE }, - { "Shadow HL", Cpu.RegisterShadowHL }, - { "SP", Cpu.RegisterSP }, - { "Flag C", Cpu.RegisterF.Bit(0) }, - { "Flag N", Cpu.RegisterF.Bit(1) }, - { "Flag P/V", Cpu.RegisterF.Bit(2) }, - { "Flag 3rd", Cpu.RegisterF.Bit(3) }, - { "Flag H", Cpu.RegisterF.Bit(4) }, - { "Flag 5th", Cpu.RegisterF.Bit(5) }, - { "Flag Z", Cpu.RegisterF.Bit(6) }, - { "Flag S", Cpu.RegisterF.Bit(7) }, + ["A"] = Cpu.RegisterA, + ["AF"] = Cpu.RegisterAF, + ["B"] = Cpu.RegisterB, + ["BC"] = Cpu.RegisterBC, + ["C"] = Cpu.RegisterC, + ["D"] = Cpu.RegisterD, + ["DE"] = Cpu.RegisterDE, + ["E"] = Cpu.RegisterE, + ["F"] = Cpu.RegisterF, + ["H"] = Cpu.RegisterH, + ["HL"] = Cpu.RegisterHL, + ["I"] = Cpu.RegisterI, + ["IX"] = Cpu.RegisterIX, + ["IY"] = Cpu.RegisterIY, + ["L"] = Cpu.RegisterL, + ["PC"] = Cpu.RegisterPC, + ["R"] = Cpu.RegisterR, + ["Shadow AF"] = Cpu.RegisterShadowAF, + ["Shadow BC"] = Cpu.RegisterShadowBC, + ["Shadow DE"] = Cpu.RegisterShadowDE, + ["Shadow HL"] = Cpu.RegisterShadowHL, + ["SP"] = Cpu.RegisterSP, + ["Flag C"] = Cpu.RegisterF.Bit(0), + ["Flag N"] = Cpu.RegisterF.Bit(1), + ["Flag P/V"] = Cpu.RegisterF.Bit(2), + ["Flag 3rd"] = Cpu.RegisterF.Bit(3), + ["Flag H"] = Cpu.RegisterF.Bit(4), + ["Flag 5th"] = Cpu.RegisterF.Bit(5), + ["Flag Z"] = Cpu.RegisterF.Bit(6), + ["Flag S"] = Cpu.RegisterF.Bit(7) }; }