• Source
    1. section .data
    2. str: db "It's-a-me, Assembly!", 0Ah
    3. str_len: equ $ - str
    4.  
    5. section .text
    6. global _start
    7.  
    8. _start:
    9. mov eax, 4
    10. mov ebx, 1
    11.  
    12. mov ecx, str
    13. mov edx, str_len
    14. int 80h
    15.  
    16. mov eax, 1
    17. mov ebx, 0
    18. int 80h
    19.