Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rurumimic/mandalart
https://github.com/rurumimic/mandalart
assembly nasm x86-64
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/rurumimic/mandalart
- Owner: rurumimic
- License: mit
- Created: 2023-12-14T11:27:23.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-01-01T12:04:48.000Z (about 1 year ago)
- Last Synced: 2024-11-09T05:19:43.949Z (3 months ago)
- Topics: assembly, nasm, x86-64
- Language: Assembly
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mandalart
- [mandalart_x64.asm](mandalart_x64.asm), [mandalart_x86.asm](mandalart_x86.asm)
- [examples](examples): [helloworld.asm](examples/helloworld.asm)## Install
```bash
sudo apt install nasm
```## Usage
### Compile
```bash
# 64-bit + 32-bit
make
make all# 64-bit
make mandalart_x64# 32-bit
make mandalart_x86
```### Run
```bash
./bin/x64/mandalart [data/template.txt]
./bin/x86/mandalart [data/template.txt]
```### Clean
```bash
make clean
```---
## Refs
- [Netwide Assembler](https://www.nasm.us/)
- github: [nasm](https://github.com/netwide-assembler/nasm)
- [docs](https://www.nasm.us/docs.php)