test_6.asm 203 B

1234567891011121314151617
  1. .file "test_6.asm"
  2. .data
  3. data:
  4. .byte 0x12
  5. .byte 0x34
  6. .word 0x1234
  7. .word 0x5678
  8. .text
  9. .global _start
  10. _start:
  11. //exit
  12. movq $60, %rax
  13. movq $0, %rdi
  14. syscall