Please enable JavaScript.
Coggle requires JavaScript to display documents.
Assembly (x86 (instructions (lea (load effective address, the contents of…
Assembly
x86
-
-
-
qword
quad-word, 64 bytes; four times the word
-
-
instructions
-
mov
mov A, B
=> move B to A (in godbolt)
-
-
lea
-
-
lea (%ebx,%esi,8), %edi — the quantity EBX+8*ESI is placed in EDI.
pxor
-
pxor xmm0, xmm0
=> set value in the xmm0
to 0
-
-