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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.