ChipTools is a utility to automate FPGA build and verification
ChipTools aims to simplify the process of building and testing FPGA designs by providing a consistent interface to vendor applications and automating simulation and synthesis flows.
# Clone the ChipTools repository to your system:
$ git clone --recursive https://github.com/pabennett/chiptools.git
# Install using the setup.py script provided in the root directory:
$ cd chiptools
$ python setup.py install
# Start the ChipTools command line interface:
$ cd examples/max_hold
$ chiptools
# Load the example project:
(cmd) load_project max_hold.xml
# Run the testsuite using Modelsim:
(cmd) run_tests modelsim
# ...or Vivado (GHDL and ISIM are also supported):
(cmd) run_tests vivado
# Synthesise the max_hold component in the lib_max_hold library (ISE, Vivado and Quartus are supported)
(cmd) synthesise lib_max_hold.max_hold
Refer to the documentation for examples on using ChipTools to simulate and build FPGA designs.
The following tools are currently supported, support for additional tools will be added in the future.