Skip to content

rafaellocatelli/web_chat_in_assembly

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

web_chat_in_assembly

Web Application in NASM (Netwide Assembler) for Linux x86_64

Target

  • no libc, pure syscalls
  • no high level assembly

Quick Start

  1. Install NASM

  2. Instal GNU Binutils for Ubuntu

  3. Compile and execute the app

$ nasm main.asm -f elf64 -o main.o
$ ld main.o -m elf_x86_64 -o main
$ ./main

About

Web Application in NASM (Netwide Assembler) for Linux x86_64

Resources

Stars

Watchers

Forks