holey-toys/README.md

15 lines
376 B
Markdown
Raw Permalink Normal View History

2024-03-04 20:30:03 +00:00
# Holey-bytes VM playground
This is my take on holey bytes toolchain, currently only an assembler written in C.
## Building
Run `make`, or `make CC=<your preferred C compiler> CFLAGS_EXTRA=<more flags>`
## Usage
To run the assembler, feed the input file to stdin, and the output will be in stdout.
```
./hbas --hex < input.S > output.hex
./hbas < input.S > output.bin
```