Test of immediate handling on 64-bit mode

This commit is contained in:
H. Peter Anvin 2007-09-25 15:39:42 -07:00
parent cfdf646e9a
commit 0bd2565dd7

13
test/movimm.asm Normal file
View File

@ -0,0 +1,13 @@
bits 64
mov rax,1234567890abcdefh
mov eax,1234567890abcdefh
mov rax,dword 1234567890abcdefh
mov rax,qword 1234567890abcdefh
mov dword [rsi],1234567890abcdefh
mov qword [rsi],1234567890abcdefh
mov dword [rsi],dword 1234567890abcdefh
mov qword [rsi],dword 1234567890abcdefh
; mov qword [rsi],qword 1234567890abcdefh ; Error
; mov [rsi],qword 1234567890abcdefh ; Error
mov [rsi],dword 1234567890abcdefh