helloworld

  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...
  2. Nicola Mingotti

    Solved wx simple example needed

    Hi all, I trying to write a trivial "hello world" application using wx widgets in FreeBSD but I get tons of errors when copying code from the web and trying to compile. I simlinked wxgtk2u2.8config to wx-config, ok, I solved that silly point. Could some of you help me to get started? What...
Back
Top