示例#1
0
 public void srl()
 {
     MipsMethodEmiter.OP_2REG_IMM_Unsigned(RD, RT, Instruction.POS, OpCodes.Shr_Un);
 }
示例#2
0
 public void andi()
 {
     MipsMethodEmiter.OP_2REG_IMM_Unsigned(RT, RS, IMMU, OpCodes.And);
 }
示例#3
0
 public void xori()
 {
     MipsMethodEmiter.OP_2REG_IMM_Unsigned(RT, RS, IMMU, OpCodes.Xor);
 }
示例#4
0
 public void sltiu()
 {
     //Console.WriteLine("SLTIU: {0} : {1}", Instruction.IMM, (uint)Instruction.IMM);
     MipsMethodEmiter.OP_2REG_IMM_Unsigned(RT, RS, (uint)Instruction.IMM, OpCodes.Clt_Un);
 }