Guest User

Untitled

a guest
Apr 25th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. .section .data
  2. dados:
  3. .ascii "Testando...\n"
  4. .section .text
  5. .globl _start
  6. _start:
  7. mov $4,%rax
  8. mov $1,%rbx
  9. mov $dados,%rcx
  10. mov $12,%rdx
  11. int $0x80
  12. mov $1,%rax
  13. mov $0,%rbx
  14. int $0x80
Add Comment
Please, Sign In to add comment