1/* 2 * Copyright 2019, Adrien Destugues, pulkomandy@pulkomandy.tk 3 * Distributed under the terms of the MIT License. 4 */ 5 6 7#include <asm_defs.h> 8 9 10.text 11 12 13/* status_t arch_cpu_user_memcpy(void *to, const void *from, size_t size, addr_t *faultHandler) */ 14FUNCTION(_arch_cpu_user_memcpy): 15 // TODO 16 retl 17 nop 18FUNCTION_END(_arch_cpu_user_memcpy) 19 20 21/* status_t arch_cpu_user_memset(void *to, char c, size_t count, addr_t *faultHandler) */ 22FUNCTION(_arch_cpu_user_memset): 23 // TODO 24 retl 25 nop 26FUNCTION_END(_arch_cpu_user_memset) 27 28 29/* ssize_t arch_cpu_user_strlcpy(void *to, const void *from, size_t size, addr_t *faultHandler) */ 30FUNCTION(_arch_cpu_user_strlcpy): 31 // TODO 32 retl 33 nop 34FUNCTION_END(_arch_cpu_user_strlcpy) 35