mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-01-10 07:41:41 +00:00
edad24479b
For these unit tests we no longer need to put them in the disabled tests file. Instead it will be skipped if the host doesn't support the feature required.
30 lines
361 B
NASM
30 lines
361 B
NASM
%ifdef CONFIG
|
|
{
|
|
"RegData": {
|
|
"MM0": ["0x3e8000003f800000", "0x0"],
|
|
"MM1": ["0x3e4ccccd3f000000", "0x0"],
|
|
"MM2": ["0x3f8000003eaaaaab", "0x0"]
|
|
},
|
|
"HostFeatures": ["3DNOW"]
|
|
}
|
|
%endif
|
|
|
|
pfrsqrtv mm0, [rel data1]
|
|
pfrsqrtv mm1, [rel data2]
|
|
pfrsqrtv mm2, [rel data3]
|
|
|
|
hlt
|
|
|
|
align 8
|
|
data1:
|
|
dd 1.0
|
|
dd 16.0
|
|
|
|
data2:
|
|
dd 4.0
|
|
dd 25.0
|
|
|
|
data3:
|
|
dd 9.0
|
|
dd 1.0
|