Skip to content

Commit

Permalink
Merge pull request #1197 from evanreichard/disassembler_update
Browse files Browse the repository at this point in the history
  • Loading branch information
a3957273 committed Mar 31, 2024
2 parents e258e5a + cd4e70b commit 21dc5d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/vendor/DisassembleX86-64.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4054,7 +4054,7 @@ function DecodeImmediate( type, BySize, SizeSetting )

//Sign bit adjust.

if( V32 >= ( n >> 1 ) ) { V32 -= n; }
if( V32 >= ( n / 2 ) ) { V32 -= n; }

//Add position.

Expand Down

0 comments on commit 21dc5d9

Please sign in to comment.