__movsd
Microsoft 特定的
產生行動字串 (rep movsd
) 指令。
語法
void __movsd(
unsigned long* Destination,
unsigned long* Source,
size_t Count
);
參數
目的地
[out]作業的目的地。
來源
[in]作業的來源。
Count
[in]要複製的雙字數目。
需求
內建 | 架構 |
---|---|
__movsd |
x86、x64 |
頭檔<intrin.h>
備註
結果是來源所指向的第一個 Count 雙字會複製到目的地字串。
此常式僅可作為內建常式使用。
範例
// movsd.cpp
// processor: x86, x64
#include <stdio.h>
#include <intrin.h>
#pragma intrinsic(__movsd)
int main()
{
unsigned long a1[10];
unsigned long a2[10] = {950, 850, 750, 650, 550, 450, 350,
250, 150, 50};
__movsd(a1, a2, 10);
for (int i = 0; i < 10; i++)
printf_s("%d ", a1[i]);
printf_s("\n");
}
950 850 750 650 550 450 350 250 150 50
END Microsoft 特定的