Sign in
third-party-mirror
/
mingw-w64
/
8a67ab4541226a80b3ec2047347890d915126de1
/
.
/
mingw-w64-crt
/
intrincs
/
__stosw.c
blob: befa4ec69d84acf59c5e8ce37a3441f943aeb3b4 [
file
] [
log
] [
blame
]
#include
<intrin.h>
void
__stosw
(
unsigned
short
*
Dest
,
unsigned
short
Data
,
size_t
Count
)
{
__asm__ __volatile__
(
"rep; stosw"
:
[
Dest
]
"=D"
(
Dest
),
[
Count
]
"=c"
(
Count
)
:
"[Dest]"
(
Dest
),
"a"
(
Data
),
"[Count]"
(
Count
)
);
}