You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 line
251B

  1. format ms64 coff
  2. section '.text' code readable executable
  3. use64
  4. public _AVX
  5. _AVX:
  6. vbroadcastsd ymm0, xmm0 ; load @num into all slots
  7. vsqrtpd ymm0, ymm0
  8. vmovdqu [rdx], ymm0 ; store result in @res
  9. ret
  10. public _RDRAND
  11. _RDRAND:
  12. rdrand eax
  13. ret