yasm

  1. K

    Solved x86_64 assembly "Hello, world!" segfaults even though exit syscall has been used

    I recently started trying to program in FreeBSD x86_64 assembly, following some tutorials and I ended up with such hello world program. section .data hello db "Hello, world!", 10 section .text global _start _start: mov rdi, 1 mov rsi, hello mov rdx, 14 mov...
Back
Top