memset.s - scc - simple c99 compiler
 (HTM) git clone git://git.simple-cc.org/scc
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
       memset.s (150B)
       ---
            1         .file "memset.s"
            2 
            3         .text
            4         .globl        memset,_memset
            5 _memset:
            6 memset:
            7         cld
            8         movq        %rdi,%r8
            9         movq        %rdx,%rcx
           10         movl        %esi,%eax
           11         rep
           12         stosb
           13         movq        %r8,%rax
           14         ret