mirror of https://github.com/YosysHQ/yosys.git
Release version 0.48
This commit is contained in:
parent
1f6153a55a
commit
aaa5347494
26
CHANGELOG
26
CHANGELOG
|
@ -2,8 +2,32 @@
|
||||||
List of major changes and improvements between releases
|
List of major changes and improvements between releases
|
||||||
=======================================================
|
=======================================================
|
||||||
|
|
||||||
Yosys 0.47 .. Yosys 0.48-dev
|
Yosys 0.47 .. Yosys 0.48
|
||||||
--------------------------
|
--------------------------
|
||||||
|
* Various
|
||||||
|
- Removed "read_ilang" deprecated pass.
|
||||||
|
- Enhanced boxing features in the experimental "abc_new" command.
|
||||||
|
- Added new Tcl methods for design inspection.
|
||||||
|
- Added clock enable inference to "dfflibmap".
|
||||||
|
- Added a Han-Carlson and Sklansky option for $lcu mapping.
|
||||||
|
|
||||||
|
* New commands and options
|
||||||
|
- Added "-nopeepopt" option to "clk2fflogic" pass.
|
||||||
|
- Added "-liberty" and "-dont_use" options to "clockgate" pass.
|
||||||
|
- Added "-ignore_buses" option to "read_liberty" pass.
|
||||||
|
- Added "-dont_map" option to "techmap" pass.
|
||||||
|
- Added "-selected" option to "write_json" pass.
|
||||||
|
- Added "wrapcell" command for creating wrapper modules
|
||||||
|
around selected cells.
|
||||||
|
- Added "portarcs" command for deriving propagation timing arcs.
|
||||||
|
- Added "setenv" command for setting environment variables.
|
||||||
|
|
||||||
|
* Gowin support
|
||||||
|
- Added "-family" option to "synth_gowin" pass.
|
||||||
|
- Cell definitions split by family.
|
||||||
|
|
||||||
|
* Verific support
|
||||||
|
- Improved blackbox support.
|
||||||
|
|
||||||
Yosys 0.46 .. Yosys 0.47
|
Yosys 0.46 .. Yosys 0.47
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -155,7 +155,7 @@ ifeq ($(OS), Haiku)
|
||||||
CXXFLAGS += -D_DEFAULT_SOURCE
|
CXXFLAGS += -D_DEFAULT_SOURCE
|
||||||
endif
|
endif
|
||||||
|
|
||||||
YOSYS_VER := 0.47+254
|
YOSYS_VER := 0.48
|
||||||
|
|
||||||
# Note: We arrange for .gitcommit to contain the (short) commit hash in
|
# Note: We arrange for .gitcommit to contain the (short) commit hash in
|
||||||
# tarballs generated with git-archive(1) using .gitattributes. The git repo
|
# tarballs generated with git-archive(1) using .gitattributes. The git repo
|
||||||
|
@ -171,7 +171,7 @@ endif
|
||||||
OBJS = kernel/version_$(GIT_REV).o
|
OBJS = kernel/version_$(GIT_REV).o
|
||||||
|
|
||||||
bumpversion:
|
bumpversion:
|
||||||
sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 647d61d.. | wc -l`/;" Makefile
|
# sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 647d61d.. | wc -l`/;" Makefile
|
||||||
|
|
||||||
ABCMKARGS = CC="$(CXX)" CXX="$(CXX)" ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q)
|
ABCMKARGS = CC="$(CXX)" CXX="$(CXX)" ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q)
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ import os
|
||||||
project = 'YosysHQ Yosys'
|
project = 'YosysHQ Yosys'
|
||||||
author = 'YosysHQ GmbH'
|
author = 'YosysHQ GmbH'
|
||||||
copyright ='2024 YosysHQ GmbH'
|
copyright ='2024 YosysHQ GmbH'
|
||||||
yosys_ver = "0.47"
|
yosys_ver = "0.48"
|
||||||
|
|
||||||
# select HTML theme
|
# select HTML theme
|
||||||
html_theme = 'furo-ys'
|
html_theme = 'furo-ys'
|
||||||
|
|
Loading…
Reference in New Issue