__movsw
Microsoft 特定的
產生行動字串 (rep movsw
) 指令。
語法
void __movsw(
unsigned short* Destination,
unsigned short* Source,
size_t Count
);
參數
目的地
[out]作業的目的地。
來源
[in]作業的來源。
Count
[in]要複製的字數。
需求
內建 | 架構 |
---|---|
__movsw |
x86、x64 |
頭檔<intrin.h>
備註
結果是來源所指向的第一個 Count 字數會複製到目的地字串。
此常式僅可作為內建常式使用。
範例
// movsw.cpp
// processor: x86, x64
#include <stdio.h>
#include <intrin.h>
#pragma intrinsic(__movsw)
int main()
{
unsigned short s1[10];
unsigned short s2[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
__movsw(s1, s2, 10);
for (int i = 0; i < 10; i++)
printf_s("%d ", s1[i]);
printf_s("\n");
}
0 1 2 3 4 5 6 7 8 9
END Microsoft 特定的