CodeGeneration.CGenState.FSUBP C# (CSharp) Method

FSUBP() public method

FSUBP: pop operands from %st(0) and %st(1), push %st(0) / %st(1) back to %st(0).
public FSUBP ( ) : void
return void
        public void FSUBP() => this.os.WriteLine("    fsubp");

Usage Example

Esempio n. 1
0
 public override void OperateDouble(CGenState state) {
     state.FSUBP();
 }
All Usage Examples Of CodeGeneration.CGenState::FSUBP