2008-10-23 07:26:29 +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-10-23 07:26:29 +02:00
|
|
|
#endif /* _ASM_X86_MMX_H */
|