示例#1
0
 public MemExtend(RegSP Base = default, Reg Index = default, ExtShift Extend = default, byte Amount = default, bool ShiftMustBeZero = default)
 {
     this.Base            = Base;
     this.Index           = Index;
     this.Extend          = Extend;
     this.Amount          = Amount;
     this.ShiftMustBeZero = ShiftMustBeZero;
 }
示例#2
0
文件: inst.cs 项目: zjmit/go2cs
        public static @string String(this RegSP r)
        {

            if (Reg(r) == WSP) 
                return "WSP";
            else if (Reg(r) == SP) 
                return "SP";
            else 
                return Reg(r).String();
            
        }
示例#3
0
文件: inst.cs 项目: zjmit/go2cs
 public static void isArg(this RegSP _p0)
 {
 }
示例#4
0
 public MemImmediate(RegSP Base = default, AddrMode Mode = default, int imm = default)
 {
     this.Base = Base;
     this.Mode = Mode;
     this.imm  = imm;
 }