Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Dependabot]: Bump neorv32 from fc0034f to 03ac28b #208

Merged
merged 1 commit into from
Dec 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion neorv32
Submodule neorv32 updated 99 files
+7 −0 CHANGELOG.md
+1 −1 README.md
+1 −1 docs/attrs.adoc
+23 −14 docs/datasheet/cpu.adoc
+7 −7 docs/datasheet/cpu_csr.adoc
+169 −109 docs/datasheet/on_chip_debugger.adoc
+2 −2 docs/datasheet/overview.adoc
+62 −80 docs/datasheet/soc.adoc
+6 −5 docs/datasheet/soc_bootrom.adoc
+7 −7 docs/datasheet/soc_cfs.adoc
+62 −0 docs/datasheet/soc_clint.adoc
+5 −5 docs/datasheet/soc_crc.adoc
+5 −5 docs/datasheet/soc_dma.adoc
+5 −5 docs/datasheet/soc_gpio.adoc
+4 −4 docs/datasheet/soc_gptmr.adoc
+0 −52 docs/datasheet/soc_mtime.adoc
+3 −3 docs/datasheet/soc_neoled.adoc
+3 −3 docs/datasheet/soc_onewire.adoc
+5 −5 docs/datasheet/soc_pwm.adoc
+3 −3 docs/datasheet/soc_sdi.adoc
+28 −28 docs/datasheet/soc_slink.adoc
+3 −3 docs/datasheet/soc_spi.adoc
+17 −13 docs/datasheet/soc_sysinfo.adoc
+3 −3 docs/datasheet/soc_trng.adoc
+3 −3 docs/datasheet/soc_twd.adoc
+3 −3 docs/datasheet/soc_twi.adoc
+5 −5 docs/datasheet/soc_uart.adoc
+3 −3 docs/datasheet/soc_wdt.adoc
+1 −1 docs/datasheet/soc_xbus.adoc
+5 −5 docs/datasheet/soc_xip.adoc
+5 −5 docs/datasheet/soc_xirq.adoc
+1 −1 docs/datasheet/software.adoc
+1 −1 docs/datasheet/software_bootloader.adoc
+7 −7 docs/datasheet/software_rte.adoc
+ docs/figures/address_space.png
+ docs/figures/bus_interface.png
+ docs/figures/bus_interface_atomic.png
+ docs/figures/neorv32_bus.png
+ docs/figures/neorv32_processor.png
+ docs/references/riscv-aclint-1.0-rc4.pdf
+ docs/references/riscv-debug-specification.pdf
+ docs/references/riscv-debug-stable.pdf
+ docs/references/riscv-privileged.pdf
+ docs/references/riscv-unprivileged.pdf
+0 −1 docs/sources/bus_interface.json
+0 −1 docs/sources/bus_interface_atomic.json
+2 −2 docs/userguide/simulating_the_processor.adoc
+21 −20 rtl/core/neorv32_application_image.vhd
+3 −3 rtl/core/neorv32_boot_rom.vhd
+329 −317 rtl/core/neorv32_bootloader_image.vhd
+163 −121 rtl/core/neorv32_bus.vhd
+15 −9 rtl/core/neorv32_cache.vhd
+454 −0 rtl/core/neorv32_clint.vhd
+1 −7 rtl/core/neorv32_cpu.vhd
+6 −4 rtl/core/neorv32_cpu_control.vhd
+3 −1 rtl/core/neorv32_cpu_lsu.vhd
+8 −3 rtl/core/neorv32_cpu_pmp.vhd
+6 −6 rtl/core/neorv32_debug_auth.vhd
+226 −173 rtl/core/neorv32_debug_dm.vhd
+2 −2 rtl/core/neorv32_debug_dtm.vhd
+2 −0 rtl/core/neorv32_dma.vhd
+3 −4 rtl/core/neorv32_imem.vhd
+0 −138 rtl/core/neorv32_mtime.vhd
+49 −47 rtl/core/neorv32_package.vhd
+5 −4 rtl/core/neorv32_sysinfo.vhd
+161 −171 rtl/core/neorv32_top.vhd
+2 −4 rtl/core/neorv32_wdt.vhd
+3 −3 rtl/file_list_soc.f
+1 −1 rtl/processor_templates/neorv32_ProcessorTop_Minimal.vhd
+1 −1 rtl/processor_templates/neorv32_ProcessorTop_MinimalBoot.vhd
+1 −1 rtl/processor_templates/neorv32_ProcessorTop_UP5KDemo.vhd
+6 −8 rtl/system_integration/neorv32_litex_core_complex.vhd
+5 −5 rtl/system_integration/neorv32_vivado_ip.tcl
+3 −5 rtl/system_integration/neorv32_vivado_ip.vhd
+3 −3 rtl/test_setups/README.md
+1 −1 rtl/test_setups/neorv32_test_setup_approm.vhd
+1 −1 rtl/test_setups/neorv32_test_setup_bootloader.vhd
+1 −1 rtl/test_setups/neorv32_test_setup_on_chip_debugger.vhd
+1 −2 sim/neorv32_tb.vhd
+16 −16 sw/bootloader/bootloader.c
+1 −1 sw/bootloader/makefile
+0 −0 sw/example/demo_clint/Makefile
+54 −29 sw/example/demo_clint/main.c
+1 −1 sw/example/dhrystone/README.md
+2 −2 sw/example/dhrystone/dhry_1.c
+1 −1 sw/example/eclipse/.settings/org.eclipse.embedcdt.managedbuild.cross.core.prefs
+29 −29 sw/example/processor_check/main.c
+4 −4 sw/image_gen/image_gen.c
+36 −38 sw/lib/include/neorv32.h
+1 −1 sw/lib/include/neorv32_cfs.h
+23 −24 sw/lib/include/neorv32_clint.h
+11 −11 sw/lib/include/neorv32_sysinfo.h
+60 −44 sw/lib/source/neorv32_clint.c
+4 −4 sw/lib/source/neorv32_cpu.c
+2 −2 sw/lib/source/neorv32_newlib.c
+6 −4 sw/lib/source/neorv32_rte.c
+4 −5 sw/ocd-firmware/debug_rom.ld
+59 −38 sw/ocd-firmware/park_loop.S
+50 −45 sw/svd/neorv32.svd
Loading