Made by following https://www.youtube.com/watch?v=wLXIWKUWpSs
nasm - sudo apt install nasm
nasm -f elf32 ex1.asm -u ex1.o
- elf - executable and linking format ELF is the executable format used by Linux.
ld -m elf_i386 ex1.o -o ex1
./ex1
echo $?