Add movaps test

This commit is contained in:
David Bullado 2018-09-17 10:22:04 +02:00 committed by Fabian
parent aafaa7c878
commit 9ec5f49115

21
tests/nasm/movaps.asm Normal file
View file

@ -0,0 +1,21 @@
global _start
section .data
align 16
myfloat0:
dd 1.234567e20
myfloat1:
dd 2.345678e20
myfloat2:
dd 3.456789e20
myfloat3:
dd 4.567891e20
myaddress:
dd 0xdeadbeef
%include "header.inc"
movaps xmm0, [myfloat0]
movaps [myaddress], xmm0
movaps xmm1, [myaddress]
%include "footer.inc"