fork download
  1. global _start
  2.  
  3. section .data
  4.  
  5. buffer dw 0h
  6. msg db "Привет", 0
  7.  
  8. section .text
  9.  
  10. _start:
  11. ; your code goes here
  12. ;mov eax, 255
  13. ;mov ebx, eax
  14. ;mov buffer, ebx
  15. ;call read
  16. mov ecx, buffer
  17. mov edx, 255
  18. je exit
  19.  
  20. exit:
  21. mov eax, 01h ; exit()
  22. xor ebx, ebx ; errno
  23. int 80h
  24.  
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
Standard output is empty