Re: [myhdl-list] fixbv to current version of myhdl
Brought to you by:
jandecaluwe
From: Christopher F. <chr...@gm...> - 2015-05-01 22:14:08
|
On 5/1/15 2:36 PM, Edward Vidal wrote: > Hello all, > I need Chris's fixbv in myhdl current 6afefa 04/28/15. > What is the preferred method to add fixbv support? > I have _fixbv.py from an older version. This wants to import from > _intbv import intbv & from _simulator import now. > Are these the only files that I need in my current working directory? > Is fixbv going to be added sometime soon? The latest fixbv implementation is available on my myhdl fork: https://github.com/cfelton/myhdl/tree/mep111_fixbv I believe you are familiar with the MEP that describes the feature: http://dev.myhdl.org/meps/mep-111.html Some additional information here: http://www.dsprelated.com/showarticle/580.php (at the end) To merge the fixbv into your clone you should be able to do the following: >> cd <to your myhdl clone> >> git remote add fixbv_repo https://github.com/cfelton/myhdl >> git pull fixbv_repo mep111_fixbv >> sudo python setup.py develop This will pull the fixbv into your MyHDL. When there are updates you can update with a pull. Let me know if you have any issues. Regards, Chris |