ra
An assembler for the Mano Machine.
```bash
cargo run --bin ra -- -r MAIN tests/example.mano
xxd tests/example.hex
cargo install rano
ra -r MAIN tests/example.mano -o example.hex
xxd example.hex ```
to get more information on the specific options afforded run ra --help
.
ra supports two build modes: debug and release. By default debug is selected. This type of build includes extra information which the emulator can use to help you debug your code. The release build strips these debug symbols, and is thus much smaller. You can select between them like so:
```bash
ra -r MAIN tests/example.mano
ra -r MAIN --release tests/example.mano ```
rano
This has not yet been completed, but will be a Mano Machine Emulator.