Ludovic 'Archivist' Lagouardette 947092c339 | há 1 ano | |
---|---|---|
.idea | há 1 ano | |
include | há 1 ano | |
prototypes/molasses | há 1 ano | |
src | há 1 ano | |
tests | há 1 ano | |
.clang-format | há 1 ano | |
.clang-tidy | há 1 ano | |
.gitignore | há 1 ano | |
CMakeLists.txt | há 1 ano | |
README.md | há 1 ano |
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