summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Merge pull request #35 from bentley/doxClifford Wolf2014-05-02
|\ | | | | Typos and grammar fixes through chapter 4.
| * Typos and grammar fixes through chapter 4.Anthony J. Bentley2014-05-02
|/
* Fixed clang -Wdeprecated-register warningsClifford Wolf2014-04-20
|
* Replaced depricated %name-prefix= bison directiveClifford Wolf2014-04-20
|
* minisat compile fixClifford Wolf2014-04-20
|
* Updated READMEClifford Wolf2014-04-18
|
* Merge pull request #33 from bentley/doxClifford Wolf2014-04-11
|\ | | | | Typos and grammar fixes through chapter 2.
| * Typos and grammar fixes through chapter 2.Anthony J. Bentley2014-04-11
|/
* Merge pull request #31 from bentley/posix-rmClifford Wolf2014-04-05
|\ | | | | Remove non-POSIX 'rm -v'.
| * POSIX find requires a path argument.Anthony J. Bentley2014-04-04
| |
| * Remove non-POSIX 'rm -v'.Anthony J. Bentley2014-04-04
|/
* Added SIMLIB_NOLUT to simlib.vClifford Wolf2014-04-02
|
* Added SIMLIB_NOSR to simlib.vClifford Wolf2014-04-02
|
* Added support for dlatchsr cellsClifford Wolf2014-03-31
|
* Fixed mapping of Verific WIDE_DFFRS operatorClifford Wolf2014-03-20
|
* Fixed mapping of Verific FADD primitive with unconnected outputsClifford Wolf2014-03-20
|
* Fixed performance problem in opt_mux with nets driven by many conflicting ↵Clifford Wolf2014-03-19
| | | | drivers
* Progress in Verific bindingsClifford Wolf2014-03-17
|
* Fixed typo in RTLIL::Module::addAdff()Clifford Wolf2014-03-17
|
* Progress in Verific bindingsClifford Wolf2014-03-17
|
* Progress in Verific bindingsClifford Wolf2014-03-17
|
* Added support for memories to verific bindingsClifford Wolf2014-03-16
|
* Use Verific Net::{IsGnd,IsPwr} API in Verific bindingsClifford Wolf2014-03-16
|
* Fixed typo in RTLIL::Module::{addSshl,addSshr}Clifford Wolf2014-03-15
|
* Progress in Verific bindingsClifford Wolf2014-03-15
|
* Progress in Verific bindingsClifford Wolf2014-03-15
|
* Progress in Verific bindingsClifford Wolf2014-03-15
|
* Added RTLIL::Module::add{Dff,Dffsr,Adff,Dlatch}Gate() APIClifford Wolf2014-03-15
|
* Progress in Verific bindingsClifford Wolf2014-03-14
|
* Added log_dump() support for generic pointersClifford Wolf2014-03-14
|
* Progress in Verific bindingsClifford Wolf2014-03-14
|
* Added RTLIL::Module::Add{Inv,And,Or,Xor,Mux}Gate APIClifford Wolf2014-03-14
|
* Progress in Verific bindingsClifford Wolf2014-03-13
|
* Copy Verific vdbs files to Yosys "share" data directoryClifford Wolf2014-03-13
|
* Small improvement in SAT log messagesClifford Wolf2014-03-13
|
* Added test_navre.ys for verific frontendClifford Wolf2014-03-13
|
* Hotfix for kernel/compatibility.hClifford Wolf2014-03-13
|
* Merge branch 'master' of https://github.com/Siesh1oo/yosysClifford Wolf2014-03-13
|\
| * - Makefile, kernel/posix_compatibility.h/.cc: replay isolated ↵Siesh1oo2014-03-13
| | | | | | | | OSX/POSIX.2008 compatibility patch.
| * Merge branch 'master' of https://github.com/Siesh1oo/yosysSiesh1oo2014-03-13
| |\ | | | | | | | | | | | | | | | Conflicts: Makefile libs/minisat/System.cc
| | * - kernel/register.h, kernel/driver.cc: refactor ↵Siesh1oo2014-03-12
| | | | | | | | | | | | | | | | | | | | | | | | rewrite_yosys_exe()/get_share_file_name() to portable proc_self_dirname()/proc_share_dirname(). This refactoring improves robustness and allows OSX support with only 7 new lines of code, and easy extension for other systems. - passes/abc/abc.cc, passes/cmds/show.cc, passes/techmap/techmap.cc: use new, refactored semantics. - Makefile: no need to add $(PWD) to $(PATH) anymore.
| | * - Makefile: don't export DYLD_LIBRARY_PATH/LD_LIBRARY_PATH: not needed if ↵Siesh1oo2014-03-12
| | | | | | | | | | | | we link minisat objects instead of library
| | * - .gitignore: ignore qmake/OSX package libs/svgviewer/svgviewer.appSiesh1oo2014-03-12
| | |
| | * - Makefile: follow changes in https://github.com/cliffordwolf/yosysSiesh1oo2014-03-12
| | |
| | * - libs/minisat/Solver.cc: insert spaces between string and PRIu64 literal, ↵Siesh1oo2014-03-12
| | | | | | | | | | | | otherwise c++11-compliant compilers will bail out due to user-defined literals (minisat bug tracker #13).
| | * - libs/minisat/System.cc: fix definition/declaration mismatch for ↵Siesh1oo2014-03-12
| | | | | | | | | | | | Minisat::memUsedPeak() and mark unused parameters as unused to fix compiler error+warning. (minisat bug tracker issues #1, #9, #10.)
| | * Merge branch 'master' of https://github.com/Siesh1oo/yosysSiesh1oo2014-03-12
| | |\
| | | * - Makefile: don't add '-g' after '-ggdb' to CXXFLAGSSiesh1oo2014-03-11
| | | |
| | | * Rebase to cliffordwolf repo HEAD finished.Siesh1oo2014-03-11
| | | |\
| | | | * - passes/techmap/Makefile.inc: POSIX 'od' has no '-w' option. Use '-An' ↵Siesh1oo2014-03-11
| | | | | | | | | | | | | | | | | | | | instead. Replace awk by simple shell commands for portability.