Calculator made in ASM (Portuguese)
sudo apt install as31 nasm
nasm -f elf64 calculator.asm # assemble the program
ld -s -o calculator calculator.o # link the object file nasm produced into an executable file
./calculator # calculator is an executable file