diff --git a/BizHawk.Emulation/Consoles/Atari/7800/Atari7800.Core.cs b/BizHawk.Emulation/Consoles/Atari/7800/Atari7800.Core.cs index f9d2094c3a..f7e015efee 100644 --- a/BizHawk.Emulation/Consoles/Atari/7800/Atari7800.Core.cs +++ b/BizHawk.Emulation/Consoles/Atari/7800/Atari7800.Core.cs @@ -18,7 +18,15 @@ namespace BizHawk.Emulation public List> GetCpuFlagsAndRegisters() { - throw new NotImplementedException(); + return new List> + { + new KeyValuePair("A", theMachine.CPU.A), + new KeyValuePair("P", theMachine.CPU.P), + new KeyValuePair("PC", theMachine.CPU.PC), + new KeyValuePair("S", theMachine.CPU.S), + new KeyValuePair("X", theMachine.CPU.X), + new KeyValuePair("Y", theMachine.CPU.Y), + }; } } }