예제 #1
0
파일: inst.cs 프로젝트: zjmit/go2cs
        public static @string String(this ImmShift @is)
        {
            if (@is.shift == 0L)
            {
                return fmt.Sprintf("#%#x", @is.imm);
            }

            if (@is.shift < 128L)
            {
                return fmt.Sprintf("#%#x, LSL #%d", @is.imm, @is.shift);
            }

            return fmt.Sprintf("#%#x, MSL #%d", @is.imm, @is.shift - 128L);

        }
예제 #2
0
파일: inst.cs 프로젝트: zjmit/go2cs
 public static void isArg(this ImmShift _p0)
 {
 }