1/* 2 * Copyright (c) 2009 Corey Tabaka 3 * 4 * Use of this source code is governed by a MIT-style 5 * license that can be found in the LICENSE file or at 6 * https://opensource.org/licenses/MIT 7 */ 8#include <lk/asm.h> 9 10/* TODO: */ 11 12.text 13.align 2 14 15/* void bcopy(const void *src, void *dest, size_t n); */ 16FUNCTION(bcopy) 17 ret 18 19/* void *memcpy(void *dest, const void *src, size_t n); */ 20FUNCTION(memmove) 21FUNCTION(memcpy) 22 ret 23 24