2008-06-18 17:08:48 +02:00
|
|
|
#ifndef ASM_X86__MMX_H
|
|
|
|
#define ASM_X86__MMX_H
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* MMX 3Dnow! helper operations
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
2008-03-23 09:02:45 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
extern void *_mmx_memcpy(void *to, const void *from, size_t size);
|
|
|
|
extern void mmx_clear_page(void *page);
|
|
|
|
extern void mmx_copy_page(void *to, void *from);
|
|
|
|
|
2008-06-18 17:08:48 +02:00
|
|
|
#endif /* ASM_X86__MMX_H */
|