mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Release version 0.34
This commit is contained in:
parent
881ce80a11
commit
4a1b559925
19
CHANGELOG
19
CHANGELOG
|
@ -2,13 +2,30 @@
|
||||||
List of major changes and improvements between releases
|
List of major changes and improvements between releases
|
||||||
=======================================================
|
=======================================================
|
||||||
|
|
||||||
Yosys 0.33 .. Yosys 0.34-dev
|
Yosys 0.33 .. Yosys 0.34
|
||||||
--------------------------
|
--------------------------
|
||||||
|
* New commands and options
|
||||||
|
- Added option "-assert" to "sim" pass.
|
||||||
|
- Added option "-noinitstate" to "sim" pass.
|
||||||
|
- Added option "-dont_use" to "abc" pass.
|
||||||
|
- Added "dft_tag" pass to create tagging logic for data flow tracking.
|
||||||
|
- Added "future" pass to resolve future sampled value functions.
|
||||||
|
- Added "booth" pass to map $mul cells to Booth multipliers.
|
||||||
|
- Added option "-booth" to "synth" pass.
|
||||||
|
|
||||||
* SystemVerilog
|
* SystemVerilog
|
||||||
- Added support for assignments within expressions, e.g., `x[y++] = z;` or
|
- Added support for assignments within expressions, e.g., `x[y++] = z;` or
|
||||||
`x = (y *= 2) - 1;`.
|
`x = (y *= 2) - 1;`.
|
||||||
|
|
||||||
|
* Verific support
|
||||||
|
- "src" attribute contain full location info.
|
||||||
|
- module parameters are kept after import.
|
||||||
|
- accurate access order semantics in memory inference.
|
||||||
|
- better "bind" support for mixed language projects.
|
||||||
|
|
||||||
|
* Various
|
||||||
|
- "show" command displays dot instead of box for wire aliases.
|
||||||
|
|
||||||
Yosys 0.32 .. Yosys 0.33
|
Yosys 0.32 .. Yosys 0.33
|
||||||
--------------------------
|
--------------------------
|
||||||
* Various
|
* Various
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -141,7 +141,7 @@ LDLIBS += -lrt
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
YOSYS_VER := 0.33+112
|
YOSYS_VER := 0.34
|
||||||
|
|
||||||
# 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
|
||||||
|
@ -157,7 +157,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 2584903.. | wc -l`/;" Makefile
|
# sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 2584903.. | wc -l`/;" Makefile
|
||||||
|
|
||||||
# set 'ABCREV = default' to use abc/ as it is
|
# set 'ABCREV = default' to use abc/ as it is
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue