        global add

        section .text
add:
        
        mov eax, edi
        add eax, esi
        ret
   
;compila       
;nasm -g -f elf64 -o addAsm.o addAsm.asm
