選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
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