Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/slowy07/asmsourcecode
- Owner: slowy07
- License: mit
- Created: 2020-10-26T22:24:06.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-10-03T09:34:49.000Z (over 2 years ago)
- Last Synced: 2024-11-22T19:43:14.809Z (3 months ago)
- Topics: asm, assembler, assembly, x86, x86-64
- Language: Assembly
- Homepage:
- Size: 70.3 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```