FEX/unittests/ASM/3DNow/0D.asm
Ryan Houdek edad24479b unittests: Support skipping unit tests based on host feature support
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.
2022-08-14 20:04:26 -07:00

36 lines
418 B
NASM

%ifdef CONFIG
{
"RegData": {
"MM0": ["0x3f800000bf800000", "0x0"],
"MM1": ["0x43000000c3000000", "0x0"],
"MM2": ["0xbf8000003f800000", "0x0"],
"MM3": ["0x0", "0x0"]
},
"HostFeatures": ["3DNOW"]
}
%endif
pi2fd mm0, [rel data1]
pi2fd mm1, [rel data2]
pi2fd mm2, [rel data3]
pi2fd mm3, [rel data4]
hlt
align 8
data1:
dd -1
dd 1
data2:
dd -128
dd 128
data3:
dd 1
dd -1
data4:
dd 0x0
dd 0x0