1. .section .data
  2. argh:
  3. .ascii "shut the fuck up this is funny LOL\n"
  4. argh_end:
  5.  
  6. .equ argh_len, argh_end - argh
  7.  
  8. .section .text
  9.  
  10. .global _start
  11. _start:
  12. movl $1, %ebx
  13. movl $argh, %ecx
  14. movl $argh_len, %edx
  15.  
  16. movl $4, %eax
  17. int $0x80
  18.  
  19. movl $0, %ebx
  20. movl $1, %eax
  21. int $0x80