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

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 2 months 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
```