.file "test_6.asm" .data data: .byte 0x12 .byte 0x34 .word 0x1234 .word 0x5678 .text .global _start _start: //exit movq $60, %rax movq $0, %rdi syscall