sudo apt install nasm
64bit:
nasm -f elf64 test.asm
ld -s -o test test.o
-----------------------------------------------------------------
32bit:
nasm -f elf32 test.asm
ld -m elf_i386 -s -o test test.o
sudo apt install nasm
64bit:
nasm -f elf64 test.asm
ld -s -o test test.o
-----------------------------------------------------------------
32bit:
nasm -f elf32 test.asm
ld -m elf_i386 -s -o test test.o