Ludovic 'Archivist' Lagouardette 5b2cc8c9dd | před 1 rokem | |
---|---|---|
.idea | před 1 rokem | |
include/molasses | před 1 rokem | |
prototypes/molasses | před 1 rokem | |
src | před 1 rokem | |
tests | před 1 rokem | |
.clang-format | před 1 rokem | |
.clang-tidy | před 1 rokem | |
.gitignore | před 1 rokem | |
CMakeLists.txt | před 1 rokem | |
README.md | před 1 rokem |
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