aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGELOG
Commit message (Collapse)AuthorAgeFilesLines
...
* verilog: fix const func eval with upto variablesZachary Snow2022-02-111-0/+4
|
* Next dev cycleMiodrag Milanovic2022-02-071-0/+3
|
* Release version 0.14Miodrag Milanovic2022-02-071-1/+1
|
* Update CHANGELOG and manualMiodrag Milanovic2022-02-071-0/+12
|
* Next dev cycleMiodrag Milanovic2022-01-111-0/+3
|
* Release version 0.13Miodrag Milanovic2022-01-111-1/+1
|
* Update CHANGELOGMiodrag Milanovic2022-01-111-6/+19
|
* sv: auto add nosync to certain always_comb local varsZachary Snow2022-01-071-0/+3
| | | | | If a local variable is always assigned before it is used, then adding nosync prevents latches from being needlessly generated.
* sv: fix size cast internal expression extensionZachary Snow2022-01-071-0/+2
|
* sv: fix size cast clipping expression widthZachary Snow2022-01-031-0/+2
|
* fix width detection of array querying function in case and case item expressionsZachary Snow2021-12-171-0/+2
| | | | | I also removed the unnecessary shadowing of `width_hint` and `sign_hint` in the corresponding case in `simplify()`.
* Next dev cycleMiodrag Milanovic2021-12-031-0/+3
|
* Release version 0.12Miodrag Milanovic2021-12-031-1/+1
|
* Update CHANGELOG and CODEOWNERSMiodrag Milanovic2021-12-011-0/+21
|
* Next dev cycleMiodrag Milanovic2021-11-051-0/+3
|
* Release version 0.11Miodrag Milanovic2021-11-051-1/+1
|
* Add missing changelog itemMiodrag Milanovic2021-11-051-0/+1
|
* Add missing items in CHANGELOGMiodrag Milanovic2021-10-291-0/+6
|
* verilog: use derived module info to elaborate cell connectionsZachary Snow2021-10-251-0/+8
| | | | | | | | - Attempt to lookup a derived module if it potentially contains a port connection with elaboration ambiguities - Mark the cell if module has not yet been derived - This can be extended to implement automatic hierarchical port connections in a future change
* Add $aldff and $aldffe: flip-flops with async load.Marcelina Kościelnicka2021-10-021-0/+2
|
* Prepare for next release cycleMiodrag Milanovic2021-09-271-1/+4
|
* sv: support wand and wor of data typesZachary Snow2021-09-211-1/+2
| | | | | | This enables the usage of declarations of wand or wor with a base type of logic, integer, or a typename. Note that declarations of nets with 2-state base types is still permitted, in violation of the spec.
* Updates for CHANGELOG (#2997)Miodrag Milanović2021-09-131-48/+126
| | | Added missing changes from git log and group items
* Add v2 memory cells.Marcelina Kościelnicka2021-08-111-0/+5
|
* memory: Introduce $meminit_v2 cell, with EN input.Marcelina Kościelnicka2021-07-281-0/+1
|
* Replace opt_rmdff with opt_dff.Marcelina Kościelnicka2020-08-071-1/+1
|
* techmap: Add _TECHMAP_CELLNAME_ special parameter.Marcelina Kościelnicka2020-07-211-1/+2
| | | | | | | This parameter will resolve to the name of the cell being mapped. The first user of this parameter will be synth_intel_alm's Quartus output, which requires a unique (and preferably descriptive) name passed as a cell parameter for the memory cells.
* Add dfflegalize pass.Marcelina Kościelnicka2020-07-011-0/+2
|
* Update CHANGELOGXiretza2020-05-281-0/+1
|
* Update CHANGELOG and manual for departure from upstreamEddie Hung2020-04-271-2/+2
|
* select: add select -unset optionEddie Hung2020-04-161-0/+1
|
* kernel: add design -delete optionEddie Hung2020-04-161-0/+1
|
* Get rid of dffsr2dff.Marcelina Kościelnicka2020-04-151-0/+1
| | | | | | This pass is a proper subset of opt_rmdff, which is called by opt, which is called by every synth flow in the coarse part. Thus, it never actually does anything and can be safely removed.
* Add to changelogMiodrag Milanovic2020-02-171-0/+1
|
* Merge branch 'master' into masterRodrigo A. Melo2020-02-031-0/+1
|\
| * Add opt_lut_ins pass. (#1673)Marcelina Kościelnicka2020-02-031-0/+1
| |
* | Merge branch 'master' of https://github.com/YosysHQ/yosysRodrigo Alejandro Melo2020-02-031-1/+3
|\| | | | | | | | | | | Solved a conflict into the CHANGELOG Signed-off-by: Rodrigo Alejandro Melo <rmelo@inti.gob.ar>
| * Update CHANGELOG and READMEDavid Shah2020-02-021-0/+1
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
* | Removed a line jump into the CHANGELOGRodrigo Alejandro Melo2020-02-011-3/+2
| | | | | | | | Signed-off-by: Rodrigo Alejandro Melo <rodrigomelo9@gmail.com>
* | $readmem[hb] file inclusion is now relative to the Verilog fileRodrigo Alejandro Melo2020-01-311-1/+2
|/ | | | Signed-off-by: Rodrigo Alejandro Melo <rodrigomelo9@gmail.com>
* Add 'abc9 -dff' to CHANGELOGEddie Hung2020-01-021-0/+1
|
* Add CHANGELOG entry, add abc9_{flop,keep} attr to README.mdEddie Hung2019-12-301-0/+1
|
* Add "scratchpad" to CHANGELOGEddie Hung2019-12-181-0/+1
|
* xilinx: Add xilinx_dffopt pass (#1557)Marcin Kościelnicki2019-12-181-0/+1
|
* xilinx: Improve flip-flop handling.Marcin Kościelnicki2019-12-181-0/+2
| | | | | | | | | | | | | | | | This adds support for infering more kinds of flip-flops: - FFs with async set/reset and clock enable - FFs with sync set/reset - FFs with sync set/reset and clock enable Some passes have been moved (and some added) in order for dff2dffs to work correctly. This gives us complete coverage of Virtex 6+ and Spartan 6 flip-flop capabilities (though not latch capabilities). Older FPGAs also support having both a set and a reset input, which will be handled at a later data.
* Update CHANGELOG and READMEDavid Shah2019-11-221-0/+2
| | | | Signed-off-by: David Shah <dave@ds0.me>
* Add "check -mapped"Clifford Wolf2019-10-021-0/+1
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* synth_xilinx: Support latches, remove used-up FF init values.Marcin Kościelnicki2019-09-301-0/+1
| | | | Fixes #1387.
* Merge remote-tracking branch 'origin/master' into xc7dspEddie Hung2019-09-201-0/+2
|\
| * Update CHANGELOGClifford Wolf2019-09-201-0/+2
| | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>