CSPspEmu.Core.Cpu.CpuThreadState.VfprList.ClearAll C# (CSharp) Method

ClearAll() public method

public ClearAll ( float Value = 0f ) : void
Value float
return void
            public void ClearAll(float Value = 0f)
            {
                for (int n = 0; n < 128; n++) this[n] = Value;
            }
CpuThreadState.VfprList