CodeGeneration.CGenState.FSTS C# (CSharp) Method

FSTS() public method

public FSTS ( Int32 imm, System.Reg to ) : void
imm System.Int32
to System.Reg
return void
        public void FSTS(Int32 imm, Reg to) => FSTS($"{imm}({RegToString(to)})");

Same methods

CGenState::FSTS ( String addr ) : void

Usage Example

Example #1
0
 public override void CalcAndSaveFloat(CGenState state) {
     state.FSUB(1, 0);
     state.FSTS(0, Reg.ECX);
 }
All Usage Examples Of CodeGeneration.CGenState::FSTS