test_3.asm 240 B

123456789101112131415161718192021
  1. .file "test_3.asm"
  2. .data
  3. .byte 0x12
  4. .byte 0x34
  5. .word 0x1234
  6. .word 0x56
  7. .long 0x1234
  8. .quad 0xabcd
  9. .word 0x1234
  10. .fill 4, 2, 0xabcd
  11. .skip 8, 0x12
  12. .space 16, 0x34
  13. .text
  14. .global _start
  15. _start:
  16. movq $60, %rax
  17. movq $0, %rdi
  18. syscall