A compiler for yeso, a language i created for fun.
Documentation and examples can be found in the docs folder.
To generate asembly run:
python3 src/main.py path/to/source/file.yeso
This will generate a file named out.asm
Then to compile the generated assembly run:
./scripts/compile.sh out
Finally to run the program run
./out
Alternativly you can compile and run the program by running:
./c.sh path/to/source/file.yeso