Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. mov eax, linea
  2. call print
  3.  
  4. mov eax, 3 ;Invoca el SYS_READ (Kernel opcode 3)
  5. mov ebx, 0 ;Escribe al archivo STDIN
  6. mov ecx, n1
  7. mov edx, 8
  8. int 80H
  9.  
  10. ;Imprimir solo para mostrar
  11. mov eax, n1
  12. call print
  13. call quit
  14. ret
  15.  
  16. n1: resb 255
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement