Add basic assembler without symbols support

This commit is contained in:
2026-05-19 15:47:02 +02:00
parent 70d1479ed7
commit f0bb80ce45
2 changed files with 156 additions and 1 deletions

View File

@@ -1,3 +1,13 @@
# hack-assembler
An implementation of a hack assembler in C++.
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.