Ecosyste.ms: Awesome
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 14 hours ago
JSON representation
Simple Programs written in Linux x86_64 Assembly.
- Host: GitHub
- URL: https://github.com/ugnmura/asm-basics
- Owner: ugnmura
- License: mit
- Created: 2022-02-19T17:06:56.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-17T17:49:26.000Z (about 2 years ago)
- Last Synced: 2025-02-06T04:51:28.014Z (10 days ago)
- Topics: asm, assembler, assembly, c, compiler, linux, low-level, x86-64
- Language: Assembly
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```