TUP.AsmResolver.ASM.x86Disassembler.ProcessInvalidInstruction C# (CSharp) Метод

ProcessInvalidInstruction() приватный Метод

private ProcessInvalidInstruction ( x86Instruction instruction ) : void
instruction x86Instruction
Результат 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;
        }