diff --git a/BizHawk.Emulation/Consoles/Atari/7800/Atari7800.Core.cs b/BizHawk.Emulation/Consoles/Atari/7800/Atari7800.Core.cs index f7e015efee..69ef41fe19 100644 --- a/BizHawk.Emulation/Consoles/Atari/7800/Atari7800.Core.cs +++ b/BizHawk.Emulation/Consoles/Atari/7800/Atari7800.Core.cs @@ -26,6 +26,13 @@ namespace BizHawk.Emulation new KeyValuePair("S", theMachine.CPU.S), new KeyValuePair("X", theMachine.CPU.X), new KeyValuePair("Y", theMachine.CPU.Y), + new KeyValuePair("B", theMachine.CPU.fB ? 1 : 0), + new KeyValuePair("C", theMachine.CPU.fC ? 1 : 0), + new KeyValuePair("D", theMachine.CPU.fD ? 1 : 0), + new KeyValuePair("I", theMachine.CPU.fI ? 1 : 0), + new KeyValuePair("N", theMachine.CPU.fN ? 1 : 0), + new KeyValuePair("V", theMachine.CPU.fV ? 1 : 0), + new KeyValuePair("Z", theMachine.CPU.fZ ? 1 : 0), }; } }