CSPspEmu.Core.Cpu.CpuThreadState.DumpRegisters C# (CSharp) Method

DumpRegisters() public method

public DumpRegisters ( ) : void
return void
        public void DumpRegisters()
        {
            DumpRegisters(Console.Out);
        }

Same methods

CpuThreadState::DumpRegisters ( TextWriter TextWriter ) : void

Usage Example

Example #1
0
 public static void DebugCurrentThread(CpuThreadState CpuThreadState)
 {
     var CpuProcessor = CpuThreadState.CpuProcessor;
     Console.Error.WriteLine("*******************************************");
     Console.Error.WriteLine("* DebugCurrentThread **********************");
     Console.Error.WriteLine("*******************************************");
     CpuProcessor.DebugCurrentThreadEvent();
     Console.Error.WriteLine("*******************************************");
     CpuThreadState.DumpRegisters();
     Console.Error.WriteLine("*******************************************");
 }
All Usage Examples Of CSPspEmu.Core.Cpu.CpuThreadState::DumpRegisters