mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-27 08:10:07 +08:00
fc565dd362
INVLPGA is defined as taking rax,ecx but "the portion of rax used to form the address is determined by the effective address size", so it is really ax/eax/rax.
9 lines
103 B
NASM
9 lines
103 B
NASM
bits 32
|
|
invlpga
|
|
invlpga ax,ecx
|
|
invlpga eax,ecx
|
|
bits 64
|
|
invlpga
|
|
invlpga eax,ecx
|
|
invlpga rax,ecx
|