Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 11, 2024
1 parent 2d838ed commit 4ab25aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/yosys
Submodule yosys updated 88 files
+128 −0 CODE_OF_CONDUCT.md
+9 −9 Makefile
+36 −438 README.md
+6 −13 backends/aiger2/aiger.cc
+1 −1 backends/edif/edif.cc
+1 −1 backends/verilog/verilog_backend.cc
+126 −29 docs/source/getting_started/installation.rst
+36 −0 docs/source/yosys_internals/extending_yosys/contributing.rst
+1 −5 docs/source/yosys_internals/extending_yosys/extensions.rst
+1 −0 docs/source/yosys_internals/extending_yosys/index.rst
+77 −1 docs/source/yosys_internals/extending_yosys/test_suites.rst
+1 −0 docs/source/yosys_internals/index.rst
+377 −0 docs/source/yosys_internals/verilog.rst
+8 −12 frontends/aiger2/xaiger.cc
+5 −5 frontends/ast/ast.cc
+1 −1 frontends/ast/genrtlil.cc
+2 −2 frontends/ast/simplify.cc
+30 −23 frontends/liberty/liberty.cc
+50 −25 frontends/verific/verific.cc
+0 −116 guidelines/Checklists
+0 −72 guidelines/CodeOfConduct
+0 −34 guidelines/CodingStyle
+0 −69 guidelines/UnitTests
+0 −83 guidelines/Windows
+39 −39 kernel/calc.cc
+10 −0 kernel/driver.cc
+8 −0 kernel/macc.h
+3 −5 kernel/mem.cc
+21 −6 kernel/rtlil.cc
+1 −1 kernel/rtlil.h
+4 −0 kernel/scopeinfo.h
+574 −0 kernel/tclapi.cc
+6 −123 kernel/yosys.cc
+4 −2 kernel/yosys.h
+0 −23 kernel/yosys_common.h
+1 −1 libs/fst/00_PATCH_win_io.patch
+1 −1 libs/fst/fstapi.cc
+2 −0 passes/cmds/Makefile.inc
+5 −3 passes/cmds/portarcs.cc
+58 −0 passes/cmds/setenv.cc
+302 −0 passes/cmds/wrapcell.cc
+3 −3 passes/fsm/fsm_map.cc
+73 −14 passes/hierarchy/keep_hierarchy.cc
+4 −5 passes/techmap/abc9_ops.cc
+51 −1 passes/techmap/abc_new.cc
+26 −7 passes/techmap/booth.cc
+29 −26 passes/techmap/clockgate.cc
+50 −57 passes/techmap/dfflibmap.cc
+4 −4 passes/techmap/libparse.cc
+34 −3 passes/techmap/libparse.h
+13 −0 passes/techmap/techmap.cc
+2 −0 techlibs/common/Makefile.inc
+59 −0 techlibs/common/choices/han-carlson.v
+37 −0 techlibs/common/choices/sklansky.v
+3 −1 techlibs/gowin/Makefile.inc
+13 −12 techlibs/gowin/cells_xtra.py
+0 −6,293 techlibs/gowin/cells_xtra.v
+1,893 −0 techlibs/gowin/cells_xtra_gw1n.v
+1,724 −0 techlibs/gowin/cells_xtra_gw2a.v
+2,680 −0 techlibs/gowin/cells_xtra_gw5a.v
+11 −2 techlibs/gowin/synth_gowin.cc
+1 −1 techlibs/quicklogic/ql_dsp_simd.cc
+6 −2 tests/arch/common/blockrom.v
+18 −1 tests/gen-tests-makefile.sh
+14 −1 tests/techmap/booth.ys
+43 −0 tests/techmap/clockgate.ys
+55 −0 tests/techmap/clockgate_neg.lib
+55 −0 tests/techmap/clockgate_pos.lib
+9 −0 tests/techmap/dfflibmap-sim.v
+28 −4 tests/techmap/dfflibmap.lib
+25 −9 tests/techmap/dfflibmap.ys
+47 −0 tests/techmap/dfflibmap_dffn_dffe.lib
+33 −0 tests/techmap/dfflibmap_dffsr.lib
+15 −0 tests/techmap/han-carlson.tcl
+15 −0 tests/techmap/kogge-stone.tcl
+0 −1 tests/techmap/kogge-stone.ys
+13 −0 tests/techmap/lcu_refined.v
+1 −1 tests/techmap/run-test.sh
+15 −0 tests/techmap/sklansky.tcl
+53 −0 tests/various/keep_hierarchy.ys
+63 −0 tests/various/tcl_apis.tcl
+12 −0 tests/various/tcl_apis.v
+1 −0 tests/various/tcl_apis.ys
+57 −0 tests/various/wrapcell.ys
+17 −0 tests/verific/blackbox_empty.ys
+41 −0 tests/verific/blackbox_ql.ys
+1 −0 tests/verific/setenv.flist
+4 −0 tests/verific/setenv.ys

0 comments on commit 4ab25aa

Please sign in to comment.