minus-squareantonlinkfedilinkEnglisharrow-up10·edit-24 days agoglobal _start section .data str db 0x55, 0x77, 0x55, 0x0A, 0 section .text _start mov rax, 1 mov rdi, 1 mov rsi, str mov rdx, 4 syscall mov rdi, 0 mov rax, 60 syscall