Files
hack-assembler/README.md
lejulien 51de990690 Switch to cmake and fetch nlohmann::json
This will be used to dynamically set a label table
2026-05-19 19:11:53 +02:00

21 lines
343 B
Markdown

# hack-assembler
An implementation of a hack assembler in C++.
## Compilation
```bash
cmake -S . -B build
cmake --build build
```
## Usage
```bash
g++ -o hack-assembler main.cpp
cat <input_file.asm> | ./hack-assembler > ./out/<output_file.hack>
```
## License
This project is under the WTFPL License. See [LICENSE](LICENSE) for details.