CodeGeneration.CGenState.ORL C# (CSharp) Method

ORL() public method

public ORL ( System.Reg er, System.Reg ee, String comment = "" ) : void
er System.Reg
ee System.Reg
comment String
return void
        public void ORL(Reg er, Reg ee, String comment = "") {
            ORL(RegToString(er), RegToString(ee), comment);
        }

Same methods

CGenState::ORL ( String er, String ee, String comment = "" ) : void

Usage Example

Esempio n. 1
0
 public override void OperateULong(CGenState state) {
     state.ORL(Reg.EBX, Reg.EAX);
 }