memcpy.s
来自「MINIX2.0操作系统源码,是Linux的前身,世界上最小的32位操作系统」· S 代码 · 共 25 行
S
25 行
! memcpy() Author: Kees J. Bot
! 2 Jan 1994
.sect .text; .sect .rom; .sect .data; .sect .bss
! void *memcpy(void *s1, const void *s2, size_t n)
! Copy a chunk of memory.
! This routine need not handle overlap, so it does not handle overlap.
! One could simply call __memmove, the cost of the overlap check is
! negligible, but you are dealing with a programmer who believes that
! if anything can go wrong, it should go wrong.
!
.sect .text
.define _memcpy
.align 16
_memcpy:
push ebp
mov ebp, esp
push esi
push edi
mov edi, 8(ebp) ! String s1
mov esi, 12(ebp) ! String s2
mov ecx, 16(ebp) ! Length
! No overlap check here
jmp __memcpy ! Call the part of __memmove that copies up
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?