fork(1) download
  1. global _start
  2.  
  3. section .data
  4. i dw 0,0,0,0
  5.  
  6. section .text
  7.  
  8. _start:
  9.  
  10. mov ah, 48
  11. mov al, 55
  12. and ax, 0000000011111111b
  13. mov word[i], ax
  14.  
  15.  
  16.  
  17. mov eax, 4
  18. mov ebx, 1
  19. mov ecx, i
  20. mov edx, 2
  21. int 80h
  22.  
  23. exit:
  24. mov eax, 01h ; exit()
  25. xor ebx, ebx ; errno
  26. int 80h
  27.  
Success #stdin #stdout 0s 4496KB
stdin
Standard input is empty
stdout
7