Simple echo programme on assembly programming language.
- Architecture: x86_64 (64-bit)
- OS: Linux
if you don't have nasm then first of all install it using package manager of your distribution
$ sudo apt install nasm
assembly-simple-echo-programme/src $ nasm -f elf64 -o hello_world.o hello_world.asm
assembly-simple-echo-programme/src $ ld -o hello_world hello_world.o
assembly-simple-echo-programme/src $ ./hello_world