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

https://github.com/yousabmenissy/aslib-examples

A collection of working assembly programs.
https://github.com/yousabmenissy/aslib-examples

assembly gnu-assembler

Last synced: 5 months ago
JSON representation

A collection of working assembly programs.

Awesome Lists containing this project

README

          

# aslib-examples
A collection of working programs intended as examples for how to use the **[aslib](https://github.com/yousabmenissy/aslib)** library.

## Index
- **[echo](https://github.com/yousabmenissy/aslib-examples/tree/main/echo):** Print all arguments to standard output.
- **[kill](https://github.com/yousabmenissy/aslib-examples/tree/main/kill):** Implement the the kill system call.
- **[mkdir](https://github.com/yousabmenissy/aslib-examples/tree/main/mkdir):** Implement the the mkdir system call.
- **[rm](https://github.com/yousabmenissy/aslib-examples/tree/main/rm):** Remove a list of files or directories.
- **[sum](https://github.com/yousabmenissy/aslib-examples/tree/main/sum):** Arthmitic sum of all arguments with exact decimal percision.

## Formatting
These programs use the autoformatter **[cur](https://github.com/yousabmenissy/cur)**.

## 100% Assembly
This library is entirely composed of handwritten assembly instructions. It does not use the C standard library, compilers, or libraries from any other language.

## License
Copyright (c) 2025-present Yousab Menissy

Licensed under MIT License. See the **[LICENSE](LICENSE)** file for details.