mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
[VCRUNTIME] Add pmmintrin.h
This commit is contained in:
parent
a67f36888c
commit
764cb5b8a5
1 changed files with 16 additions and 0 deletions
16
sdk/include/vcruntime/pmmintrin.h
Normal file
16
sdk/include/vcruntime/pmmintrin.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* PROJECT: ReactOS SDK
|
||||
* LICENSE: MIT (https://spdx.org/licenses/MIT)
|
||||
* PURPOSE: Intrinsics for the SSE3 instruction set
|
||||
* COPYRIGHT: Copyright 2024 Timo Kreuzer (timo.kreuzer@reactos.org)
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#define _INCLUDED_PMM
|
||||
|
||||
#include <emmintrin.h>
|
||||
|
||||
#define _MM_DENORMALS_ZERO_MASK 0x0040
|
||||
#define _MM_DENORMALS_ZERO_ON 0x0040
|
||||
#define _MM_DENORMALS_ZERO_OFF 0x0000
|
Loading…
Reference in a new issue