Ludovic 'Archivist' Lagouardette 14b35dbc6b | vor 1 Jahr | |
---|---|---|
.idea | vor 1 Jahr | |
include/molasses | vor 1 Jahr | |
prototypes/molasses | vor 1 Jahr | |
src | vor 1 Jahr | |
tests | vor 1 Jahr | |
.clang-format | vor 1 Jahr | |
.clang-tidy | vor 1 Jahr | |
.gitignore | vor 1 Jahr | |
CMakeLists.txt | vor 1 Jahr | |
README.md | vor 1 Jahr |
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