mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
9148fb5951
Mostly intended for the "mib" expressions in BNDLDX/BNDSTX. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com> Signed-off-by: Jin Kyu Song <jin.kyu.song@intel.com>
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]
|