Quickstart Guide ================ This guide will help you get started with the AVL library. It will show you how to install the library, compile and run the examples, \ and how to use the library in your own projects. Before you start this guide, you should have a basic understanding of Python and HDL languages such as Verilog or VHDL. In order to run the examples you will need to have installed: - `Python `_ - A HDL simulator - If you haven't licensed a commercial HDL simulator `Verilator `_ is available as an open-source alternative. - A waveform viewer - If you haven't licensed a commercial HDL simulator `GTKWave `_ is a popular open-source waveform viewer. It's also recommended that you have a basic understanding of the `cocotb `_ framework. Installing From pip --------------------- .. code-block:: bash # Standard build pip install avl-core # Development build pip install avl-core[dev] This will install the latest version of the library and all required dependencies. If you want to install a specific version, you can specify the version number: .. code-block:: bash pip install avl-core==0.2.0 Installing From Source ---------------------- AVL is available via `GitHub `_. All required libraries including cocotb are included in the pyproject.toml file. .. code-block:: bash git clone https://github.com/projectapheleia/avl.git cd avl # Standard build pip install . # Development build pip install .[dev] Or if you plan on editing the source code, you can install in editable mode: .. code-block:: bash git clone https://github.com/projectapheleia/avl.git cd avl pip install --editable .[dev] A script is provided to setup a python virtual environment and install all dependencies for development. .. code-block:: bash git clone https://github.com/projectapheleia/avl.git cd avl source avl.sh This assumes you have a simulator and `Graphviz `_ installed, to ensure all examples and documentation can be built out of the box. .. note:: avl.sh updated to work on Linux and macOS. Building The Docs ----------------- .. code-block:: bash cd doc make html build/html/index.html Running the Examples -------------------- The examples are located in the examples directory. To run the examples, you will need to have a HDL simulator installed, the default is `Verilator `_. To run all examples: .. code-block:: bash cd examples make sim To clean up the examples: .. code-block:: bash cd examples make clean Alternatively, you can run each example individually: .. code-block:: bash cd examples/adder/template make sim If using Verilator all examples generate `vcd `_ files.