Ludovic 'Archivist' Lagouardette 947092c339 | 1 year ago | |
---|---|---|
.idea | 1 year ago | |
include | 1 year ago | |
prototypes/molasses | 1 year ago | |
src | 1 year ago | |
tests | 1 year ago | |
.clang-format | 1 year ago | |
.clang-tidy | 1 year ago | |
.gitignore | 1 year ago | |
CMakeLists.txt | 1 year ago | |
README.md | 1 year ago |
lex : string ➔ lexed_output
takes a filename to a file that must be compiled
merge : lexed_output lexed_output ➔ lexed_output
merges two lexed modules together
parse : lexed_output ➔ parsed_output
prepares code for generation
generate : parsed_output string ➔ string
takes a root filename, it will be appended with ".s" and that will be the generated assembly file, the filename will not be consumed
assemble : string ➔ _
takes a root filename, it will be appended with ".s" and that file will be compiled, the compiled output will be the given filename
help : _ ➔ _
prints this help
$ sugar example.mol lex parse potato generate
$ sugar example.mol lex parse potato generate assemble
$ sugar example.mol lex 2.mol lex merge parse potato generate assemble