Small project to get acquainted with the intel X86 assembly language.
$ nasm -f elf32 makeCoffees.asm # Compile the assembly code
$ ld -m elf_i386 -s -o makeCoffees makeCoffees.o # Link the object file
$ chmod +x makeCoffees # Make the executable file executable
$ ./makeCoffees # Run the executable file