fork download
  1. section .data
  2. txt: db 'This is my 1st asm prog!',10
  3. len: equ $-txt
  4.  
  5. section .text
  6. global _start
  7.  
  8. _start:
  9. mov eax,4
  10. mov ebx,1
  11. mov ecx,txt
  12. mov edx,len
  13. int 80h
  14. mov eax,1
  15. mov ebx,0
  16. int 80h
Success #stdin #stdout 0s 5296KB
stdin
Standard input is empty
stdout
This is my 1st asm prog!