TUP.AsmResolver.ASM.x86Disassembler.ProcessInvalidInstruction C# (CSharp) Méthode

ProcessInvalidInstruction() private méthode

private ProcessInvalidInstruction ( x86Instruction instruction ) : void
instruction x86Instruction
Résultat void
        internal void ProcessInvalidInstruction(x86Instruction instruction)
        {
            byte firstByte = instruction.OpCode.OpCodeBytes[0];
            instruction.OpCode = x86OpCode.Create(x86OpCodes.Unknown);
            instruction.OpCode._opcodeBytes = new byte[] { firstByte };
            CurrentOffset = instruction.Offset.FileOffset + 1;
        }