本文整理汇总了C#中Instruction.SPR方法的典型用法代码示例。如果您正苦于以下问题:C# Instruction.SPR方法的具体用法?C# Instruction.SPR怎么用?C# Instruction.SPR使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Instruction
的用法示例。
在下文中一共展示了Instruction.SPR方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Mtspr_C
static List<CStatement> Mtspr_C(uint pc, uint instruction)
{
Instruction i = new Instruction(instruction);
CStatement stat = new CStatement(CStatement.Kinds.Assignment, null, RegName(i.RS()));
stat.OperandSizes = CStatement.Sizes.Long;
stat.Op1 = new CStatement.COperand();
stat.Op1.Kind = CStatement.OperandKinds.Variable;
switch (i.SPR())
{
case 32:
stat.Op1.Name = "xer";
break;
case 256:
stat.Op1.Name = "lr";
break;
case 288:
stat.Op1.Name = "ctr";
break;
default:
stat.Op1.Name = "spr" + i.SPR();
break;
}
List<CStatement> stats = new List<CStatement>();
stats.Add(stat);
return stats;
}