mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-01-26 08:45:14 +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.
24 lines
298 B
NASM
24 lines
298 B
NASM
%ifdef CONFIG
|
|
{
|
|
"RegData": {
|
|
"RAX": "0xFFFFFFFFFFFFFFFF",
|
|
"RBX": "0",
|
|
"RCX": "0xFFFFFFFF",
|
|
"RDX": "0"
|
|
},
|
|
"HostFeatures": ["BMI1"]
|
|
}
|
|
%endif
|
|
|
|
mov rax, 0
|
|
mov rbx, -1
|
|
andn rax, rax, rbx
|
|
andn rbx, rbx, rax
|
|
|
|
mov rcx, 0
|
|
mov rdx, -1
|
|
andn ecx, ecx, edx
|
|
andn edx, edx, ecx
|
|
|
|
hlt
|