aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | Release version 0.25Miodrag Milanovic2023-01-032-3/+8
| | | | |
* | | | | Bump versiongithub-actions[bot]2023-01-031-1/+1
| |_|_|/ |/| | |
* | | | Merge pull request #3606 from YosysHQ/fix_vsMiodrag Milanović2023-01-022-12/+0
|\ \ \ \ | | | | | | | | | | Remove cache
| * | | | Remove cacheMiodrag Milanovic2023-01-022-12/+0
|/ / / /
* | | | add note to help about how to chain commandsN. Engelhardt2023-01-021-1/+1
| | | |
* | | | Merge pull request #3577 from KrystalDelusion/deprecate_manualMiodrag Milanović2023-01-0286-20284/+10
|\ \ \ \ | |_|_|/ |/| | | Deprecate manual
| * | | Fixing other references to the manualKrystalDelusion2022-12-192-10/+6
| | | | | | | | | | | | | | | | And files that were in the directory.
| * | | Removed manual from make cleanKrystalDelusion2022-12-191-1/+0
| | | |
| * | | Remove make targets for manualKrystalDelusion2022-12-191-9/+1
| | | | | | | | | | | | | | | | Leaves the clean, since presentation source is still directly buildable and cleanable.
| * | | Remove help outputs for texKrystalDelusion2022-12-081-92/+0
| | | | | | | | | | | | | | | | Also for old website.
| * | | And appnotesKrystalDelusion2022-12-0833-2721/+0
| | | |
| * | | Removing manual filesKrystalDelusion2022-12-0848-17415/+0
| | | |
| * | | Removing old manual from README.mdKrystalDelusion2022-12-081-36/+3
| | | |
* | | | Merge pull request #3467 from jix/fix_cellarray_simplifyJannis Harder2022-12-192-0/+47
|\ \ \ \ | | | | | | | | | | simplify: Do not recursively simplify AST_CELL within AST_CELLARRAY
| * | | | simplify: regression test for AST_CELLARRAY simplification issueJannis Harder2022-12-071-0/+45
| | | | |
| * | | | simplify: Do not recursively simplify AST_CELL within AST_CELLARRAYJannis Harder2022-12-071-0/+2
| |/ / / | | | | | | | | | | | | | | | | | | | | Otherwise the AST_CELL simplification uses the wrong celltype before the AST_CELLARRAY simplification has a chance to unroll it and change it to the $array celltype.
* | | | Bump versiongithub-actions[bot]2022-12-161-1/+1
| | | |
* | | | Merge pull request #3588 from YosysHQ/noblackboxMiodrag Milanović2022-12-151-0/+6
|\ \ \ \ | | | | | | | | | | respect noblackbox attribute in verific
| * | | | respect noblackbox attribute in verificMiodrag Milanovic2022-12-151-0/+6
|/ / / /
* | | | Bump versiongithub-actions[bot]2022-12-131-1/+1
| | | |
* | | | Merge pull request #3581 from jix/formalff-errorJannis Harder2022-12-121-0/+3
|\ \ \ \ | | | | | | | | | | formalff: Proper error messages on async inputs for the -clk2ff mode
| * | | | formalff: Proper error messages on async inputs for the -clk2ff modeJannis Harder2022-12-091-0/+3
|/ / / /
* | | | Merge pull request #3573 from daglem/struct-array-multidimensionalJannis Harder2022-12-072-98/+138
|\ \ \ \ | |/ / / |/| | | Support for packed multidimensional arrays within packed structs
| * | | Made make_struct_member_range side-effect-free againDag Lem2022-12-041-20/+20
| | | |
| * | | Support for packed multidimensional arrays within packed structsDag Lem2022-12-032-98/+138
| | | |
* | | | Bump versiongithub-actions[bot]2022-12-061-1/+1
| | | |
* | | | Next dev cycleMiodrag Milanovic2022-12-052-2/+5
| | | |
* | | | Release version 0.24Miodrag Milanovic2022-12-052-3/+16
| | | |
* | | | Update manualMiodrag Milanovic2022-12-051-6/+189
| | | |
* | | | Merge pull request #3572 from jix/tcl-recoverMiodrag Milanović2022-12-056-8/+114
|\ \ \ \ | | | | | | | | | | tcl: Don't exit repl on recoverable command errors
| * | | | tcl: Update help message to mention 'tee -s'Jannis Harder2022-12-051-2/+2
| | | | |
| * | | | tcl: Unset both result.json and result.string only before calling passJannis Harder2022-12-051-2/+1
| | | | |
| * | | | tcl: Don't exit repl on recoverable command errorsJannis Harder2022-12-022-4/+36
| | | | |
| * | | | tcl: Return scratchpad result.json and result.string as tcl objectsJannis Harder2022-12-021-2/+57
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes it possible for yosys commands to return values when invoked as tcl commands. Right now no commands natively support this, but the tee command can be used with json output like this: ```tcl set stat [yosys tee -q -s result.json stat -json -top top] dict get $stat modules \\top num_cells_by_type \$pmux ``` Or with newline separated lists like this: ```tcl split [yosys tee -q -s result.string select -list top] "\n" ```
| * | | | stat: Fix JSON output for empty designsJannis Harder2022-12-021-2/+2
| | | | |
| * | | | tee: Allow logging command output to a given scratchpad valueJannis Harder2022-12-023-0/+20
| |/ / /
* | | | Merge pull request #3568 from YosysHQ/verific_msgMiodrag Milanović2022-12-051-3/+16
|\ \ \ \ | | | | | | | | | | Set all Verific messages of certain type to other
| * | | | set VERI-1063 explicitlyMiodrag Milanovic2022-12-021-5/+7
| | | | |
| * | | | Set all verific messages of certain type to otherMiodrag Milanovic2022-11-301-3/+14
| | | | |
* | | | | Merge pull request #3569 from YosysHQ/ver_no_rewritersMiodrag Milanović2022-12-051-0/+2
|\ \ \ \ \ | |_|/ / / |/| | | | verific: Ignore errors produced by extension
| * | | | reset elaboration error after rewriterMiodrag Milanovic2022-11-301-0/+2
| |/ / /
| | | * Merge branch 'claire/eqystuff' of github.com:YosysHQ/yosys into claire/eqystuffClaire Xenia Wolf2022-12-211-14/+10
| | | |\
| | | | * xprop: Improve signal splitting codeJannis Harder2022-12-121-14/+10
| | | | | | | | | | | | | | | | | | | | | | | | | Avoid splitting output ports twice when combining -split-outputs with -split-public and clean up the corresponding code.
| | | * | Allow non-unique modules without state in sim writeback-modeClaire Xenia Wolf2022-12-211-4/+5
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Claire Xenia Wolf <claire@clairexen.net>
| | | * | Small bugfix in uniquify passClaire Xenia Wolf2022-12-211-0/+1
| | | |/ | | | | | | | | | | | | Signed-off-by: Claire Xenia Wolf <claire@clairexen.net>
| | | * Improvements in "viz" passClaire Xenia Wolf2022-12-091-24/+100
| | | | | | | | | | | | | | | | Signed-off-by: Claire Xenia Wolf <claire@clairexen.net>
| | | * Add gold-x handing to miter cross port handlingClaire Xenia Wolf2022-12-081-1/+9
| | | | | | | | | | | | | | | | Signed-off-by: Claire Xenia Wolf <claire@clairexen.net>
| | | * Merge branch 'claire/eqystuff' of github.com:YosysHQ/yosys into claire/eqystuffClaire Xenia Wolf2022-12-081-0/+39
| | | |\
| | | | * Merge pull request #3579 from jix/split_public_untestedClaire Xen2022-12-081-0/+39
| | | | |\ | | | | | | | | | | | | xprop: Add -split-public option
| | | | | * xprop: Add -split-public optionJannis Harder2022-12-081-0/+39
| | | | |/