From 7215aed75358acc57a0a656b0553772c5567971c Mon Sep 17 00:00:00 2001 From: Torsten Meissner Date: Fri, 26 Oct 2018 13:55:18 +0200 Subject: [PATCH] Add info about new project location; add info about cloning with --recursive option --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 89aa86c..24db89a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ [![Build Status](https://travis-ci.org/tmeissner/libvhdl.svg?branch=master)](https://travis-ci.org/tmeissner/libvhdl) +The original repository is now located on my own git-server at [https://git.goodcleanfun.de/tmeissner/libvhdl](https://git.goodcleanfun.de/tmeissner/libvhdl) +It is mirrored to github with every push, so both should be in sync. + # libvhdl A LGPL3 licensed library of reusable components for VHDL designs and testbenches. @@ -95,9 +98,8 @@ Common functions useful for simulation/synthesis To run the tests, you have to install GHDL. You can get it from [https://github.com/tgingold/ghdl/](https://github.com/tgingold/ghdl/). Your GHDL version should not be too old, because libvhdl needs VHDL-2008 support. So, it's best to get the latest stable release or build from latest sources. -libvhdl uses the OSVVM library to generate random data for the unit tests. We use version OSVVM version 2014.01. You can find it under the OSVVM folder in the test/ -directory. If you use another simulator with full OSVVM support, you can download newer versions of the library -from [http://osvvm.org](http://osvvm.org). +libvhdl uses the OSVVM library to generate random data for the unit tests. It is shipped with libvhdl as git submodule. You have to use the `--recursive` option when clone +the libvhdl Repository to get it: `git clone --recursive https://git.goodcleanfun.de/tmeissner/libvhdl` Another useful tool is GTKWave, install it if you want to use the waveform files generated by some of the tests.