Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 10, 2025
1 parent b3b4350 commit 7806f96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neorv32
Submodule neorv32 updated 71 files
+6 −2 .github/workflows/Processor.yml
+4 −0 CHANGELOG.md
+3 −2 README.md
+235 −109 docs/Doxyfile
+1 −1 docs/attrs.adoc
+24 −15 docs/datasheet/cpu.adoc
+90 −30 docs/datasheet/cpu_csr.adoc
+50 −19 docs/datasheet/cpu_dual_core.adoc
+80 −131 docs/datasheet/overview.adoc
+1 −1 docs/datasheet/soc_bootrom.adoc
+0 −1 docs/datasheet/soc_cfs.adoc
+0 −1 docs/datasheet/soc_clint.adoc
+0 −1 docs/datasheet/soc_crc.adoc
+0 −1 docs/datasheet/soc_dcache.adoc
+0 −1 docs/datasheet/soc_dma.adoc
+0 −1 docs/datasheet/soc_dmem.adoc
+0 −1 docs/datasheet/soc_gpio.adoc
+0 −1 docs/datasheet/soc_gptmr.adoc
+0 −1 docs/datasheet/soc_icache.adoc
+0 −1 docs/datasheet/soc_imem.adoc
+0 −1 docs/datasheet/soc_neoled.adoc
+0 −1 docs/datasheet/soc_onewire.adoc
+0 −1 docs/datasheet/soc_pwm.adoc
+0 −1 docs/datasheet/soc_sdi.adoc
+0 −1 docs/datasheet/soc_slink.adoc
+0 −1 docs/datasheet/soc_spi.adoc
+0 −1 docs/datasheet/soc_sysinfo.adoc
+0 −1 docs/datasheet/soc_trng.adoc
+0 −1 docs/datasheet/soc_twd.adoc
+0 −1 docs/datasheet/soc_twi.adoc
+0 −1 docs/datasheet/soc_uart.adoc
+0 −1 docs/datasheet/soc_wdt.adoc
+0 −1 docs/datasheet/soc_xbus.adoc
+0 −2 docs/datasheet/soc_xip.adoc
+0 −1 docs/datasheet/soc_xirq.adoc
+2 −1 docs/datasheet/software.adoc
+17 −1 docs/datasheet/software_bootloader.adoc
+ docs/figures/smp_system.png
+10 −1 docs/userguide/customizing_the_bootloader.adoc
+3 −0 docs/userguide/executable_upload.adoc
+40 −48 rtl/core/neorv32_application_image.vhd
+75 −82 rtl/core/neorv32_bootloader_image.vhd
+5 −5 rtl/core/neorv32_bus.vhd
+257 −0 rtl/core/neorv32_core_complex.vhd
+64 −22 rtl/core/neorv32_cpu.vhd
+23 −7 rtl/core/neorv32_cpu_control.vhd
+146 −0 rtl/core/neorv32_cpu_icc.vhd
+20 −12 rtl/core/neorv32_package.vhd
+150 −190 rtl/core/neorv32_top.vhd
+1 −0 rtl/file_list_cpu.f
+2 −0 rtl/file_list_soc.f
+8 −0 rtl/system_integration/neorv32_vivado_ip.tcl
+97 −93 rtl/system_integration/neorv32_vivado_ip.vhd
+7 −0 sim/neorv32_tb.vhd
+178 −25 sw/bootloader/bootloader.c
+27 −0 sw/bootloader/makefile
+31 −43 sw/common/crt0.S
+6 −7 sw/example/demo_dual_core/main.c
+0 −1 sw/example/demo_dual_core/run_check.sh
+10 −15 sw/example/processor_check/main.c
+2 −4 sw/lib/include/neorv32.h
+21 −3 sw/lib/include/neorv32_cpu_csr.h
+0 −42 sw/lib/include/neorv32_legacy.h
+2 −1 sw/lib/include/neorv32_rte.h
+90 −0 sw/lib/include/neorv32_smp.h
+44 −7 sw/lib/include/neorv32_sysinfo.h
+4 −4 sw/lib/source/neorv32_aux.c
+67 −108 sw/lib/source/neorv32_rte.c
+68 −0 sw/lib/source/neorv32_smp.c
+0 −38 sw/lib/source/neorv32_sysinfo.c
+1 −1 sw/svd/neorv32.svd

0 comments on commit 7806f96

Please sign in to comment.