From ffea86db3ecbbd1d0aa2e897cb36e7146cdfa2e1 Mon Sep 17 00:00:00 2001 From: Damian Recoskie Date: Mon, 5 Jun 2023 09:10:39 -0400 Subject: [PATCH] #10 --- x86/dis-x86.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x86/dis-x86.js b/x86/dis-x86.js index bce0545..e1282f7 100644 --- a/x86/dis-x86.js +++ b/x86/dis-x86.js @@ -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. }