__movsw
Microsoft 專有的
產生移動的字串 (rep movsw) 的指令。
void __movsw(
unsigned short* Dest,
unsigned short* Source,
size_t Count
);
參數
[out] Dest
作業的目的地。[in] Source
作業的來源。[in] Count
要複製的文字數。
需求
內建 |
架構 |
---|---|
__movsw |
x86,x64 |
標頭檔 <intrin.h>
備註
結果會是第一個Count所指的單字Source會被複製到Dest字串。
只有使用與內建這個常式。
範例
// 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");
}