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

DumpRegistersVFpu() public method

public DumpRegistersVFpu ( TextWriter TextWriter ) : void
TextWriter System.IO.TextWriter
return void
        public void DumpRegistersVFpu(TextWriter TextWriter)
        {
            for (int n = 0; n < 32; n++)
            {
                if (n % 4 != 0) TextWriter.Write(", ");
                TextWriter.Write("c0r{0,2} : 0x{1:X8}", n, C0R[n]);
                if (n % 4 == 3) TextWriter.WriteLine();
            }
            TextWriter.WriteLine();
        }