mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-28 15:34:31 +00:00
10 lines
196 B
C
10 lines
196 B
C
int main(int, char *[], char *[])
|
|
{
|
|
#if defined(__amd64__) || defined(__i386__)
|
|
__asm__ __volatile__("movaps %%xmm1, %%xmm0\n" : : : "memory");
|
|
#else
|
|
#warning "Unimplemented"
|
|
#endif
|
|
return 0;
|
|
}
|