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