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

68 lines
1.5 KiB
Plaintext
Raw Normal View History

MyHDL 0.9
=========
2003-01-30 17:30:38 +00:00
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
2014-08-24 08:44:33 +02: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
Development
-----------
2014-08-24 08:44:33 +02:00
The main development repo is at https://bitbucket.org/jandecaluwe/myhdl
2003-08-08 13:41:03 +00:00
2008-12-21 15:42:55 +01:00
Documentation
-------------
The manual is available on-line:
2003-02-14 11:42:55 +00:00
2014-08-24 08:44:33 +02:00
http://docs.myhdl.org/en/latest/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
2014-08-24 08:44:33 +02:00
http://docs.myhdl.org/en/latest/whatsnew/0.8.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
------------
2003-02-14 11:42:55 +00:00
If you have superuser power, you can install MyHDL as follows:
2003-01-30 22:36:49 +00:00
python setup.py install
This will install the package in the appropriate site-wide Python
package location.
Otherwise, you can install it in a personal directory, e.g. as
follows:
python setup.py install --home=$HOME
In this case, be sure to add the appropriate install dir to the
$PYTHONPATH.
If necessary, consult the distutils documentation in the standard
2010-12-19 18:20:35 +01:00
Python library if necessary for more details;
or contact me.
2003-01-30 22:36:49 +00:00
2004-04-21 13:38:04 +00:00
You can test the proper installation as follows:
2003-03-06 22:16:03 +00:00
2008-12-21 15:42:55 +01:00
cd myhdl/test/core
2004-04-21 13:38:04 +00:00
python test_all.py
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
2003-05-15 09:30:34 +00:00
Go to the directory co-simulation/<platform> for your target platform
2004-12-28 17:04:43 +00:00
and following the instructions in the README.txt file.
2003-05-14 09:12:21 +00:00