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

DumpRegistersFpu() public method

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