Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ugnmura/asm-basics

Simple Programs written in Linux x86_64 Assembly.
https://github.com/ugnmura/asm-basics

asm assembler assembly c compiler linux low-level x86-64

Last synced: about 14 hours ago
JSON representation

Simple Programs written in Linux x86_64 Assembly.

Awesome Lists containing this project

README

        

# Assembly Basics

Simple Programs written in Linux x86_64 Assembly.

### How to run

```bash
nasm -felf64 main.asm
ld main.o
./a.out
```