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