CodeGeneration.CGenState.FSTL C# (CSharp) Method

FSTL() public method

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

Same methods

CGenState::FSTL ( String addr ) : void

Usage Example

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