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

https://github.com/m4n3dw0lf/assembly-x64

My Collection of x64 Assembly programs with NASM
https://github.com/m4n3dw0lf/assembly-x64

assembly assembly-collection nasm

Last synced: about 1 month ago
JSON representation

My Collection of x64 Assembly programs with NASM

Awesome Lists containing this project

README

        

![](https://img.shields.io/badge/OS-GNU%2FLinux-000000.svg)
![](https://img.shields.io/badge/arch-x86__64-lightgrey.svg)
![](https://img.shields.io/badge/assembler-nasm-yellow.svg)
[![](https://img.shields.io/badge/donate-bitcoin-orange.svg)](https://blockchain.info/address/1Eggia3JXwWiR4mkVqztionNUfs2N3ghAd)
# Assembly-Collection
My Collection of x64 Assembly programs with NASM

- Assembly with:
```
$ nasm -f elf64 .s -o .o
```

- Link with:
```
$ ld .o -o
```

- Run with:
```
$ ./
```