1
0
mirror of https://github.com/myhdl/myhdl.git synced 2024-12-14 07:44:38 +08:00
myhdl/README.md

82 lines
2.2 KiB
Markdown
Raw Normal View History

MyHDL 0.11
2018-03-28 20:53:46 +02:00
==========
2003-01-30 17:30:38 +00:00
[![Documentation Status](https://readthedocs.org/projects/myhdl/badge/?version=stable)](http://docs.myhdl.org/en/stable/manual/)
2015-07-07 08:53:12 +02:00
[![Documentation Status](https://readthedocs.org/projects/myhdl/badge/?version=latest)](http://docs.myhdl.org/en/latest/manual)
[![Join the chat at https://gitter.im/myhdl/myhdl](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/myhdl/myhdl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[<img src="https://d11a6trkgmumsb.cloudfront.net/original/3X/a/d/ad2526334012b2ad0c3421f9b6dd94bae2ede52f.svg" alt="Visit MyHDL at Discourse" align="left" height="36" width="134" >](https://discourse.myhdl.org)
<br><br><br>
2008-12-21 15:42:55 +01:00
What is MyHDL?
--------------
MyHDL is a free, open-source package for using Python as a hardware
description and verification language.
2005-12-27 14:33:57 +00:00
2009-01-09 12:33:14 +01:00
To find out whether MyHDL can be useful to you, please read:
2005-12-27 14:33:57 +00:00
- http://www.myhdl.org/start/why.html
2003-01-30 17:30:38 +00:00
2008-12-21 15:42:55 +01:00
License
-------
MyHDL is available under the LGPL license. See ``LICENSE.txt``.
2005-12-27 14:33:57 +00:00
2008-12-21 15:42:55 +01:00
Website
-------
The project website is located at http://www.myhdl.org
2008-12-21 15:42:55 +01:00
Documentation
-------------
The manual is available on-line:
2003-02-14 11:42:55 +00:00
2015-07-07 08:53:12 +02:00
- http://docs.myhdl.org/en/stable/manual
2004-02-02 10:47:49 +00:00
2008-12-21 15:42:55 +01:00
What's new
----------
2009-01-09 12:33:14 +01:00
To find out what's new in this release, please read:
2003-08-08 13:41:03 +00:00
- http://docs.myhdl.org/en/stable/whatsnew/0.11.html
2003-01-30 22:36:49 +00:00
2008-12-21 15:42:55 +01:00
Installation
2003-01-30 17:30:38 +00:00
------------
It is recommended to install MyHDL (and your project's other dependencies) in
a virtualenv.
Installing the latest stable release:
2003-01-30 22:36:49 +00:00
```
pip install myhdl
```
Unfortunately the version on PyPI is quite behind the current development status, so you are better off installing the *stable* master branch directly from this GitHub repository:
2003-01-30 22:36:49 +00:00
```
pip install git+https://github.com/myhdl/myhdl.git@master
```
2003-01-30 22:36:49 +00:00
To install a local clone of the repository:
```
pip install -e path/to/dir
```
2003-01-30 22:36:49 +00:00
To install a specific commit hash, tag or branch from git:
```
pip install git+https://github.com/myhdl/myhdl@f696b8
```
2003-01-30 22:36:49 +00:00
2004-04-21 13:38:04 +00:00
You can test the proper installation as follows:
```
cd myhdl/test/core
2015-05-05 10:42:04 -05:00
py.test
```
2003-01-30 22:36:49 +00:00
2003-05-15 09:30:34 +00:00
To install co-simulation support:
2003-05-14 09:12:21 +00:00
Go to the directory ``cosimulation/<platform>`` for your target platform
and following the instructions in the ``README.txt`` file.