Skip to content

Commit

Permalink
Build(deps): Bump third_party/yosys from 0fc5812 to 17ee367
Browse files Browse the repository at this point in the history
Bumps [third_party/yosys](https://github.com/YosysHQ/yosys) from `0fc5812` to `17ee367`.
- [Release notes](https://github.com/YosysHQ/yosys/releases)
- [Commits](YosysHQ/yosys@0fc5812...17ee367)

---
updated-dependencies:
- dependency-name: third_party/yosys
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Sep 5, 2024
1 parent f5cd191 commit 1271b9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/yosys
Submodule yosys updated 61 files
+52 −0 .github/workflows/prepare-docs.yml
+2 −52 .github/workflows/test-verific.yml
+1 −0 .readthedocs.yaml
+9 −1 CHANGELOG
+7 −3 Makefile
+10 −0 README.md
+2 −1 docs/Makefile
+7 −9 docs/source/_images/Makefile
+1 −1 docs/source/code_examples/opt/Makefile
+31 −14 docs/source/conf.py
+2 −0 docs/source/using_yosys/more_scripting/index.rst
+0 −6 docs/source/using_yosys/more_scripting/troubleshooting.rst
+3 −1 docs/source/using_yosys/synthesis/cell_libs.rst
+4 −2 docs/source/yosys_internals/extending_yosys/build_verific.rst
+1 −0 passes/cmds/Makefile.inc
+120 −0 passes/cmds/internal_stats.cc
+76 −135 passes/proc/proc_dff.cc
+31 −0 techlibs/nanoxplore/Makefile.inc
+76 −0 techlibs/nanoxplore/arith_map.v
+50 −0 techlibs/nanoxplore/brams.txt
+23 −0 techlibs/nanoxplore/brams_init.vh
+84 −0 techlibs/nanoxplore/brams_map.v
+127 −0 techlibs/nanoxplore/cells_bb.v
+2,156 −0 techlibs/nanoxplore/cells_bb_l.v
+1,527 −0 techlibs/nanoxplore/cells_bb_m.v
+2,758 −0 techlibs/nanoxplore/cells_bb_u.v
+95 −0 techlibs/nanoxplore/cells_map.v
+421 −0 techlibs/nanoxplore/cells_sim.v
+0 −0 techlibs/nanoxplore/cells_sim_l.v
+0 −0 techlibs/nanoxplore/cells_sim_m.v
+306 −0 techlibs/nanoxplore/cells_sim_u.v
+201 −0 techlibs/nanoxplore/cells_wrap.v
+1,713 −0 techlibs/nanoxplore/cells_wrap_l.v
+1,501 −0 techlibs/nanoxplore/cells_wrap_m.v
+3,506 −0 techlibs/nanoxplore/cells_wrap_u.v
+15 −0 techlibs/nanoxplore/io_map.v
+11 −0 techlibs/nanoxplore/latches_map.v
+164 −0 techlibs/nanoxplore/nx_carry.cc
+17 −0 techlibs/nanoxplore/rf_init.vh
+15 −0 techlibs/nanoxplore/rf_rams_l.txt
+15 −0 techlibs/nanoxplore/rf_rams_m.txt
+30 −0 techlibs/nanoxplore/rf_rams_map_l.v
+30 −0 techlibs/nanoxplore/rf_rams_map_m.v
+345 −0 techlibs/nanoxplore/rf_rams_map_u.v
+66 −0 techlibs/nanoxplore/rf_rams_u.txt
+370 −0 techlibs/nanoxplore/synth_nanoxplore.cc
+2 −0 tests/arch/nanoxplore/.gitignore
+71 −0 tests/arch/nanoxplore/add_sub.ys
+47 −0 tests/arch/nanoxplore/adffs.ys
+22 −0 tests/arch/nanoxplore/dffs.ys
+16 −0 tests/arch/nanoxplore/fsm.ys
+33 −0 tests/arch/nanoxplore/latches.ys
+9 −0 tests/arch/nanoxplore/logic.ys
+145 −0 tests/arch/nanoxplore/lutram.ys
+50 −0 tests/arch/nanoxplore/meminit.v
+44 −0 tests/arch/nanoxplore/meminit.ys
+41 −0 tests/arch/nanoxplore/mux.ys
+4 −0 tests/arch/nanoxplore/run-test.sh
+10 −0 tests/arch/nanoxplore/shifter.ys
+13 −0 tests/arch/nanoxplore/tribuf.ys
+80 −0 tests/proc/proc_dff.ys

0 comments on commit 1271b9a

Please sign in to comment.