Esempio n. 1
0
        private static void DecompileOp16(DecompilerContext context, DecompilerTableEntry entry, ref List <object> operands, ref List <int> branchTargets)
        {
            var b = context.ReadByte();

            operands.Add(b);
            if (b == 2)
            {
                operands.AddRange(context.DecompileOperands("LLLL"));
            }
        }
Esempio n. 2
0
 private static void DecompileOp4f(DecompilerContext context, DecompilerTableEntry entry, ref List <object> operands, ref List <int> branchTargets)
 {
     operands.Add(context.ReadByte());
     operands.Add(context.DecompileExpression());
 }