mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-27 08:10:07 +08:00
accf94ea24
A much better way to handle the 32-bit immediates in 64-bit moves. Add a test file.
8 lines
179 B
NASM
8 lines
179 B
NASM
bits 64
|
|
mov rax,11223344h
|
|
mov rax,dword 11223344h
|
|
mov eax,11223344h
|
|
mov [rax],dword 11223344h ; 32-bit operation
|
|
mov qword [rax],11223344h
|
|
mov qword [rax],dword 11223344h
|