fork download
  1. global _start
  2.  
  3. _start:
  4.  
  5. mov eax, 4
  6. mov ebx, 1
  7. mov ecx, msg
  8. mov edx, msglen
  9. int 0x80
  10.  
  11. mov eax, 1
  12. mov ebx, 0
  13. int 0x80
  14.  
  15. section .data
  16.  
  17. msg: db "Linux rulez 4ever",0x0A,0
  18. msglen equ $-msg
Success #stdin #stdout 0.01s 144KB
stdin
Standard input is empty
stdout
Linux rulez 4ever