movntps.asm 299 B

123456789101112131415161718192021
  1. global _start
  2. section .data
  3. align 16
  4. myfloat0:
  5. dd 1.234567e20
  6. myfloat1:
  7. dd 2.345678e20
  8. myfloat2:
  9. dd 3.456789e20
  10. myfloat3:
  11. dd 4.567891e20
  12. myaddress:
  13. dd 0xdeadbeef
  14. %include "header.inc"
  15. movapd xmm0, [myfloat0]
  16. movntps [myaddress], xmm0
  17. movapd xmm1, [myaddress]
  18. %include "footer.inc"