1 ! bcopy
() Author
: Kees J. Bot
3 .sect .text; .sect .rom; .sect .data; .sect .bss
5 ! void bcopy
(const void
*s1
, void
*s2
, size_t n
)
6 ! Copy
a chunk of memory. Handle overlap.
7 ! This is
a BSD routine that escaped from the kernel. Don
't use.
13 mov eax, 4(esp) ! Exchange string arguments
16 jmp __memmove ! Call the proper routine