blob: 23e6dce073ef207f50a304390b3f59113a23e3f1 [file] [log] [blame]
#include <intrin.h>
void __movsd(unsigned __LONG32 *Dest, unsigned __LONG32 const *Source, size_t Count)
{
__asm__ __volatile__
(
"rep; movsd" :
[Dest] "=D" (Dest), [Source] "=S" (Source), [Count] "=c" (Count) :
"[Dest]" (Dest), "[Source]" (Source), "[Count]" (Count)
);
}