Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/slowy07/asmsourcecode

my task with assembly
https://github.com/slowy07/asmsourcecode

asm assembler assembly x86 x86-64

Last synced: 14 days ago
JSON representation

my task with assembly

Awesome Lists containing this project

README

        

# Learn assembly
Everything i learn about assembly language

## Downloading nasm
In all currently supported operating systems, you can download nasm from the [official website](http://www.nasm.us/).
```bash
sudo apt-get install asm31 nasm
```
**as31** = intel 8031 / 8051 assembler\
**nasm** = general purpose assembler

## Compiling
**elf32**
```bash
nasm -f elf32 -o asm.o asm.asm
ld -m elf_i386 -o asm asm.o
```
**elf64**
```bash
nasm -f elf64 filename.asm
ld -s -o filename filename.o
./filename
```