Begin defining the meta language.

The Cretonne meta language is used to describe Cretonne instructions, both the
target independent ones in the base instruction set and real target
instructions.

Start by providing type definitions matching langref, and begin the meta
language reference using autodoc to pull in the PYthon definitions.
This commit is contained in:
Jakob Olesen
2016-02-04 17:25:32 -08:00
parent f66d2a26a2
commit ec918fe332
5 changed files with 141 additions and 0 deletions

View File

@@ -21,6 +21,10 @@ import shlex
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, os.path.abspath('.'))
# Also add the meta directory to sys.path so autodoc can find the Cretonne meta
# language definitions.
sys.path.insert(0, os.path.abspath('../meta'))
# -- General configuration ------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.