Skip to content

Commit

Permalink
[Dependabot]: Bump neorv32 from 06f3177 to a0f4349
Browse files Browse the repository at this point in the history
Bumps [neorv32](https://github.com/stnolting/neorv32) from `06f3177` to `a0f4349`.
- [Release notes](https://github.com/stnolting/neorv32/releases)
- [Commits](stnolting/neorv32@06f3177...a0f4349)

---
updated-dependencies:
- dependency-name: neorv32
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 9, 2024
1 parent d78c422 commit f08e9d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neorv32
Submodule neorv32 updated 79 files
+9 −8 .github/workflows/Processor.yml
+1 −0 .gitignore
+7 −0 CHANGELOG.md
+1 −2 README.md
+44 −17 docs/Makefile
+5 −2 docs/attrs.adoc
+0 −4 docs/attrs.main.adoc
+1 −0 docs/datasheet/cpu.adoc
+17 −10 docs/datasheet/cpu_csr.adoc
+1 −2 docs/datasheet/main.adoc
+1 −0 docs/datasheet/soc.adoc
+72 −60 docs/datasheet/soc_onewire.adoc
+14 −9 docs/datasheet/soc_twi.adoc
+3 −3 docs/datasheet/soc_uart.adoc
+15 −3 docs/datasheet/software.adoc
+ docs/figures/onewire_data.png
+1 −1 docs/sources/onewire_data.json
+11 −12 docs/userguide/application_program_compilation.adoc
+1 −2 docs/userguide/main.adoc
+37 −51 docs/userguide/sw_toolchain_setup.adoc
+1 −1 docs/userguide/zephyr_support.adoc
+32 −32 rtl/core/neorv32_bus.vhd
+2 −1 rtl/core/neorv32_cache.vhd
+4 −4 rtl/core/neorv32_cfs.vhd
+3 −3 rtl/core/neorv32_cpu.vhd
+2 −2 rtl/core/neorv32_cpu_alu.vhd
+225 −255 rtl/core/neorv32_cpu_control.vhd
+1 −0 rtl/core/neorv32_cpu_lsu.vhd
+6 −7 rtl/core/neorv32_cpu_pmp.vhd
+5 −5 rtl/core/neorv32_debug_dm.vhd
+66 −66 rtl/core/neorv32_dma.vhd
+183 −107 rtl/core/neorv32_onewire.vhd
+40 −2 rtl/core/neorv32_package.vhd
+9 −3 rtl/core/neorv32_top.vhd
+12 −7 rtl/core/neorv32_trng.vhd
+8 −4 rtl/core/neorv32_twi.vhd
+8 −4 rtl/core/neorv32_uart.vhd
+1 −1 rtl/system_integration/neorv32_vivado_ip.tcl
+45 −62 rtl/system_integration/neorv32_vivado_ip.vhd
+63 −108 rtl/system_integration/xbus2axi4lite_bridge.vhd
+20 −18 sim/ghdl.run.sh
+0 −20 sim/ghdl.setup.sh
+1 −2 sim/ghdl.sh
+260 −401 sim/neorv32_tb.vhd
+93 −0 sim/sim_uart_rx.vhd
+0 −77 sim/uart_rx.vhd
+102 −0 sim/xbus_gateway.vhd
+100 −0 sim/xbus_memory.vhd
+40 −23 sw/common/common.mk
+1 −1 sw/example/bus_explorer/main.c
+0 −0 sw/example/coremark/include/core_portme.h
+0 −0 sw/example/coremark/include/coremark.h
+2 −2 sw/example/coremark/makefile
+0 −0 sw/example/coremark/source/core_list_join.c
+0 −0 sw/example/coremark/source/core_main.c
+0 −0 sw/example/coremark/source/core_matrix.c
+0 −0 sw/example/coremark/source/core_portme.c
+0 −0 sw/example/coremark/source/core_state.c
+0 −0 sw/example/coremark/source/core_util.c
+0 −0 sw/example/coremark/source/cvt.c
+0 −0 sw/example/coremark/source/ee_printf.c
+7 −2 sw/example/demo_onewire/main.c
+25 −24 sw/example/demo_onewire/onewire_aux.h
+13 −0 sw/example/demo_twi/main.c
+3 −1 sw/example/dhrystone/README.md
+1 −34 sw/example/float_corner_test/neorv32_zfinx_extension_intrinsics.h
+1 −1 sw/example/hello_world/makefile
+2 −2 sw/example/makefile
+16 −10 sw/example/processor_check/main.c
+2 −2 sw/example/processor_check/makefile
+33 −21 sw/lib/include/neorv32_onewire.h
+1 −0 sw/lib/include/neorv32_rte.h
+22 −16 sw/lib/include/neorv32_twi.h
+1 −1 sw/lib/source/neorv32_cpu.c
+44 −33 sw/lib/source/neorv32_onewire.c
+4 −5 sw/lib/source/neorv32_rte.c
+33 −1 sw/lib/source/neorv32_twi.c
+25 −0 sw/lib/source/neorv32_uart.c
+45 −20 sw/svd/neorv32.svd

0 comments on commit f08e9d1

Please sign in to comment.