This repository contains C and Assembly implementations based on my low-level programming studies
$ nasm -felf64 file.asm -o file.o
$ ld -o file file.o
$ chmod u+x file
$ ./file
$ nasm file.asm -f elf64
$ gcc -c main.c -o main.o
$ gcc file.o main.o -o test -no-pie
$ ./test
all:
nasm *.asm -felf64
gcc -c *.c
gcc -no-pie *.o -o test
Unix/Linux
Mateus Almeida
This project is licensed under the MIT License.