section .text
global _start
_start:
mov rax, 1
mov rdi, message
int 42h
mov rdi, message2
mov rax, 0
section .rodata
message:
db "Hello!", 0xa, 0
message2:
db "I am an app", 0xa, 0