recreate project as DLL
This commit is contained in:
17
test_cases/advanced_instructions.asm
Normal file
17
test_cases/advanced_instructions.asm
Normal file
@@ -0,0 +1,17 @@
|
||||
format ms64 coff
|
||||
|
||||
section '.text' code readable executable
|
||||
|
||||
use64
|
||||
|
||||
public _AVX
|
||||
_AVX:
|
||||
vbroadcastsd ymm0, xmm0 ; load @num into all slots
|
||||
vsqrtpd ymm0, ymm0
|
||||
vmovdqu [rdx], ymm0 ; store result in @res
|
||||
ret
|
||||
|
||||
public _RDRAND
|
||||
_RDRAND:
|
||||
rdrand eax
|
||||
ret
|
||||
Reference in New Issue
Block a user