forked from KolibriOS/kolibrios
49cb0f914d
devman: scan pci root bus git-svn-id: svn://kolibrios.org@1627 a494cfbc-eb01-0410-851d-a64ba20cac60
15 lines
418 B
ArmAsm
15 lines
418 B
ArmAsm
/* bcopy() Author: Kees J. Bot */
|
|
/* 2 Jan 1994 */
|
|
|
|
/* void bcopy(const void *s1, void *s2, size_t n) */
|
|
/* Copy a chunk of memory. Handle overlap. */
|
|
/* This is a BSD routine that escaped from the kernel. Don't use. */
|
|
/* */
|
|
#include "asm.h"
|
|
|
|
ENTRY(bcopy)
|
|
movl 4(%esp), %eax /* Exchange string arguments */
|
|
xchgl 8(%esp), %eax
|
|
movl %eax, 4(%esp)
|
|
jmp _C_LABEL(_memmove) /* Call the proper routine */
|