mirror of
https://github.com/gchq/CyberChef
synced 2025-03-13 21:36:56 +00:00
Fixed right shift 32 problem
This commit is contained in:
parent
a3b873fd96
commit
cd4e70b24b
1 changed files with 1 additions and 1 deletions
2
src/core/vendor/DisassembleX86-64.mjs
vendored
2
src/core/vendor/DisassembleX86-64.mjs
vendored
|
@ -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.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue