scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

memcpy.s (120B)


      1 	.file 	"memcpy.s"
      2 
      3 	.text
      4 	.globl	memcpy,_memcpy
      5 
      6 _memcpy:
      7 memcpy:
      8 	cld
      9 	mov	%rdi,%rax
     10 	mov	%rdx,%rcx
     11 	rep
     12 	movsb
     13 	ret