mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-12-03 08:41:02 +08:00
12 lines
167 B
NASM
12 lines
167 B
NASM
|
bits 32
|
||
|
|
||
|
mov eax,[eax]
|
||
|
mov eax,[eax+ecx]
|
||
|
mov eax,[eax+ecx*4]
|
||
|
mov eax,[eax+ecx*4+8]
|
||
|
|
||
|
mov eax,[eax]
|
||
|
mov eax,[eax,ecx]
|
||
|
mov eax,[eax,ecx*4]
|
||
|
mov eax,[eax+8,ecx*4]
|