CSPspEmu.Core.Cpu.CpuProcessor.DebugCurrentThread C# (CSharp) Method

DebugCurrentThread() public static method

public static DebugCurrentThread ( CpuThreadState CpuThreadState ) : void
CpuThreadState CpuThreadState
return void
        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("*******************************************");
        }