.section .data
message: .asciz "Hello, World!\n"
.section .text
.global _start
_start:
mov $1, %rax
mov $1, %rdi
mov $message, %rsi
mov $13, %rdx
syscall
mov $60, %rax
xor %rdi, %rdi
syscall
.section .data
message: .asciz "Hello, World!\n"
.section .text
.global _start
_start:
mov $1, %rax
mov $1, %rdi
mov $message, %rsi
mov $13, %rdx
syscall
mov $60, %rax
xor %rdi, %rdi
syscall