您最多选择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