Web Application in NASM (Netwide Assembler) for Linux x86_64
- no libc, pure syscalls
- no high level assembly
-
Install NASM
-
Instal GNU Binutils for Ubuntu
-
Compile and execute the app
$ nasm main.asm -f elf64 -o main.o
$ ld main.o -m elf_x86_64 -o main
$ ./main