home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / string / memcpy.s < prev    next >
Encoding:
Text File  |  1995-03-11  |  330 b   |  21 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2.     .file "memcpy.s"
  3.     .text
  4.     .align    4
  5.     .globl    _memcpy
  6. _memcpy:
  7.     pushl    %ebp
  8.     movl    %esp,%ebp
  9.     pushl    %esi
  10.     pushl    %edi
  11.     movl    8(%ebp),%edi
  12.     movl    12(%ebp),%esi
  13.     movl    16(%ebp),%ecx
  14.     call    ___dj_movedata
  15.     popl    %edi
  16.     popl    %esi
  17.     movl    8(%ebp),%eax
  18.     leave
  19.     ret
  20.  
  21.