Home

Awesome

jhdl

The software is under development and cannot be used yet.

The aim of the project is to make a series of very fast HDL tools supporting VHDL and Verilog. The tools will be:

VHDL and Verilog formatted filename dependency list. Could be used to generate file lists for synthesis tools or tar tool.

The code is written for maintainability and should be easily expandable.

Source code are located in ./src ./src/ast Contains abstract syntax tree and scanner ./src/vhdl/scanner Is the VHDL specific scanner parts ./src/vhdl/parser Contains the VHDL parser that transforms the VHDL syntax into an abstract syntax tree ./src/verilog/scanner Is the Verilog specific scanner parts ./src/verilog/parser Contains the Verilog parser that transforms the Verilog syntax into an abstract syntax tree ./src/generator Transforms the abstract syntax tree into C++ ./src/kernel/lib Contains the helper functions to compile and simulate the generated C++ ./src/templates Contains templates for the testsuite ./config Contains minumum configuration file ./std The standard VHDL packages

The processing of VHDL to C++ is done using the following steps:

Unit tests are located in ./test

Regression tests are located in ./testsuite