Skip to content

Commit

Permalink
#10
Browse files Browse the repository at this point in the history
  • Loading branch information
Recoskie committed Jun 5, 2023
1 parent 81c1a8b commit ffea86d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x86/dis-x86.js
Original file line number Diff line number Diff line change
Expand Up @@ -4628,7 +4628,7 @@ core = {
this.indexExtend = ( this.opcode & 0x02 ) << 2; //Index Register extend setting.
this.regExtend = ( this.opcode & 0x04 ) << 1; //Register extend setting.
this.widthBit = ( this.opcode & 0x08 ) >> 3; //Set The Width Bit setting if active.
this.sizeAttrSelect = this.widthBit ? 2 : 1; //The width Bit open all 64 bits.
this.sizeAttrSelect = this.widthBit ? 2 : this.sizeAttrSelect; //The width Bit opens all 64 bits.
return(this.decodePrefixAdjustments()); //restart function decode more prefix settings that can effect the decode instruction.
}

Expand Down

0 comments on commit ffea86d

Please sign in to comment.