Instalação Assembly
- NASM - Compilador da linguagem Assembly.
- GCC - Compilador da linguagem C.
- GNU Make - Sistema de Construção.
- GDB - Depurador
- Nano - Editor de texto
Assembly - Compilando
- nasm -felf64 hello.asm -o hello.o
- ld -o hello hello.o
- chmod u+x hello
- ./hello
C - Compilando
- gcc hello.c -o hello
- ./hello