/** Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de.* Distributed under the terms of the MIT License.*/#include <asm_defs.h>#include <commpage_defs.h>.align 4FUNCTION(memcpy):movl __gCommPageAddress, %eaxaddl 4 * COMMPAGE_ENTRY_X86_MEMCPY(%eax), %eaxjmp *%eaxFUNCTION_END(memcpy)FUNCTION(memset):movl __gCommPageAddress, %eaxaddl 4 * COMMPAGE_ENTRY_X86_MEMSET(%eax), %eaxjmp *%eaxFUNCTION_END(memset)