Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 519 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 519 Bytes

yeso-compiler

A compiler for yeso, a language i created for fun.

Documentation

Documentation and examples can be found in the docs folder.

Try it

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