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.
- Host: GitHub
- URL: https://github.com/yousabmenissy/aslib-examples
- Owner: yousabmenissy
- License: mit
- Created: 2025-02-21T19:21:35.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-21T19:33:16.000Z (about 1 year ago)
- Last Synced: 2025-02-21T20:26:29.206Z (about 1 year ago)
- Topics: assembly, gnu-assembler
- Language: Assembly
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.