diff options
author | 1138-4EB <1138-4EB@users.noreply.github.com> | 2019-11-11 18:46:36 +0000 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2019-11-11 19:46:36 +0100 |
commit | 8599d9ddd15b15afdeced6059b1e1b7a972f4db1 (patch) | |
tree | 499b9c6fe0f85ce7ed221f72ac31036eefde0194 /doc/development/Roadmap.rst | |
parent | 22775978be88c5ea8e5b740734e42eeb2fef0968 (diff) | |
download | ghdl-8599d9ddd15b15afdeced6059b1e1b7a972f4db1.tar.gz ghdl-8599d9ddd15b15afdeced6059b1e1b7a972f4db1.tar.bz2 ghdl-8599d9ddd15b15afdeced6059b1e1b7a972f4db1.zip |
Update doc (#1003)
* doc: update makefile and build scripts
* actions: add workflow 'doc'
* doc: reorganize sections
* doc: fix 'unknown option' warnings, headings, spaces, etc.
* doc: add subdir 'examples', move 'quick_start' sources
* doc: add section 'Development/Debugging'
* doc: add section'Development/Synthesis'
* doc: update roadmap
* doc: add section examples
* doc: use standard domain
* doc: add comment about 'vhd' vs 'vhdl'
Diffstat (limited to 'doc/development/Roadmap.rst')
-rw-r--r-- | doc/development/Roadmap.rst | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/development/Roadmap.rst b/doc/development/Roadmap.rst new file mode 100644 index 000000000..799ec7cbc --- /dev/null +++ b/doc/development/Roadmap.rst @@ -0,0 +1,26 @@ +.. _DEV:Roadmap: + +Roadmap | Future Improvements +############################# + +We have several axes for `GHDL` improvements: + +* Synthesis +* Full support of VHDL-2008 +* Optimization (simulation speed) +* Better diagnostics messages (warning and error) +* Graphical tools (to see waves and to debug) +* Style checks +* VITAL acceleration + +* Documentation + + * Development/Synthesis. Synthesis, ghdlsynth-beta, formal verification, etc. Copy the 'Usage' section from ghdlsynth's README (https://github.com/1138-4EB/ghdlsynth-beta#usage). + * Development/libghdl. How to interact with GHDL through ``libghdl`` and/or ``libghdl-py``. + * Development/Related Projects. Brief discussion about similarities/differences with other open source projects such as rust_hdl or pyVHDLParser. + * Usage/Docker. Probably copy/convert :file:`README.md` and :file:`USE_CASES.md` in ghdl/docker :ghdlsharp:`166`. + * Usage/Language Server. + * Usage/Examples/Coverage. Code coverage in GHDL is a side effect of using GCC as a backend. In the future, GCC backend support might be dropped in favour of mcode and LLVM. To do so, code coverage with LLVM should be supported first. Anyway, comments/bits of info should be gathered somewhere in the docs, along with references to gcov, lcov, etc. + * Usage/Examples/UART. Dossmatik's UART and unisim guides. We have ``*.doc`` sources to be converted to Sphinx. + * Usage/Examples/Free Range VHDL. https://github.com/fabriziotappero/Free-Range-VHDL-book + * It is possible to add waveforms with wavedrom, since there is a sphinx extension available. |