test_7.asm 144 B

12345678910111213
  1. .file "test_7.asm"
  2. .data
  3. str:
  4. .ascii "test"
  5. .text
  6. .global _start
  7. _start:
  8. //exit
  9. movq $60, %rax
  10. movq $0, %rdi