Ich denke es sollte so aussehen
Delphi-Quellcode:
Instruction.SIB_Scale := (Instruction.SIB and $C0); // ich verwende für sowas lieber hex
Instruction.SIB_Index := (Instruction.SIB and $38) shr 3;
Instruction.SIB_Base := (Instruction.SIB and $07);
Gruss