1/* 2** Copyright 2001, Travis Geiselbrecht. All rights reserved. 3** Distributed under the terms of the NewOS License. 4*/ 5 6#include <asm_defs.h> 7 8#warning RISCV64: optimized assembly memcpy 9// for now, a generic C one in: 10// * src/system/kernel/lib/arch/riscv64/Jamfile 11// * src/system/runtime_loader/arch/riscv64/Jamfile 12 13#if 0 14 15/* that should be enough for now */ 16 17.align 4 18FUNCTION(memcpy): 19/* void *memcpy(void *dest, const void *src, size_t count) */ 20FUNCTION_END(memcpy) 21#endif 22