Skip to content

Commit 63913f4

Browse files
authored
Merge pull request #1829 from piguagua/master
2 parents 7eb887c + b6c9549 commit 63913f4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/core/vendor/DisassembleX86-64.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3199,7 +3199,7 @@ const REG = [
31993199
REG index 10 Intel MM qword technology MMX vector instructions.
32003200
---------------------------------------------------------------------------------------------------------------------------
32013201
These can not be used with Vector length adjustment used in vector extensions. The MM register are the ST registers aliased
3202-
to MM register. Instructions that use these registers use the the SIMD vector unit registers (MM), these are called the old
3202+
to MM register. Instructions that use these registers use the SIMD vector unit registers (MM), these are called the old
32033203
MMX vector instructions. When Intel added the SSE instructions to the SIMD math vector unit the new 128 bit XMM registers,
32043204
are added into the SIMD unit then they ware made longer in size 256, then 512 across in length, with 1024 (?MM Reserved)
32053205
In which the vector length setting was added to control there size though vector setting adjustment codes. Instruction
@@ -3784,7 +3784,7 @@ function GotoPosition( Address )
37843784
/*-------------------------------------------------------------------------------------------------------------------------
37853785
Finds bit positions to the Size attribute indexes in REG array, and the Pointer Array. For the Size Attribute variations.
37863786
---------------------------------------------------------------------------------------------------------------------------
3787-
The SizeAttribute settings is 8 digits big consisting of 1, or 0 to specify the the extended size that an operand can be made.
3787+
The SizeAttribute settings is 8 digits big consisting of 1, or 0 to specify the extended size that an operand can be made.
37883788
In which an value of 01100100 is decoded as "0 = 1024, 1 = 512, 1 = 256, 0 = 128, 0 = 64, 1 = 32, 0 = 16, 0 = 8".
37893789
In which the largest bit position is 512, and is the 6th number "0 = 7, 1 = 6, 1 = 5, 0 = 4, 0 = 3, 1 = 2, 0 = 1, 0 = 0".
37903790
In which 6 is the bit position for 512 as the returned Size . Each size is in order from 0 to 7, thus the size given back

src/web/Manager.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ class Manager {
271271
* @param {Object} [scope=this] - The object to bind to the callback function
272272
*
273273
* @example
274-
* // Calls the search function whenever the the keyup, paste or search events are triggered on the
274+
* // Calls the search function whenever the keyup, paste or search events are triggered on the
275275
* // search element
276276
* this.addMultiEventListener("search", "keyup paste search", this.search, this);
277277
*/
@@ -292,7 +292,7 @@ class Manager {
292292
* @param {Object} [scope=this] - The object to bind to the callback function
293293
*
294294
* @example
295-
* // Calls the save function whenever the the keyup or paste events are triggered on any element
295+
* // Calls the save function whenever the keyup or paste events are triggered on any element
296296
* // with the .saveable class
297297
* this.addMultiEventListener(".saveable", "keyup paste", this.save, this);
298298
*/

0 commit comments

Comments
 (0)