Exemplo n.º 1
0
        /// <summary>
        /// 将源寄存器值赋值到目标寄存器,源寄存器由b指定,目标寄存器为a,c无效
        /// </summary>
        /// <param name="i"></param>
        public void Move(Instruction i)
        {
            int a = 0, b = 0, c = 0;

            i.ABC(ref a, ref b, ref c);
            luaState.CopyTo(b + 1, a + 1);
        }