mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-18 09:08:33 -04:00
Re-org of RISC-V file structure and naming step 2.
This commit is contained in:
parent
818eeccc0c
commit
e2af102c80
8 changed files with 114 additions and 85 deletions
|
@ -24,7 +24,7 @@
|
|||
#endif
|
||||
|
||||
.section .text.entry
|
||||
.extern vFreeRTOSPortTrapHandler
|
||||
.extern freertos_risc_v_trap_handler
|
||||
.globl _start
|
||||
|
||||
_start:
|
||||
|
@ -34,10 +34,10 @@ nmi_vector:
|
|||
j nmi_vector
|
||||
|
||||
trap_vector:
|
||||
j vFreeRTOSPortTrapHandler
|
||||
j freertos_risc_v_trap_handler
|
||||
|
||||
handle_reset:
|
||||
la t0, vFreeRTOSPortTrapHandler
|
||||
la t0, freertos_risc_v_trap_handler
|
||||
csrw mtvec, t0
|
||||
csrwi mstatus, 0
|
||||
csrwi mie, 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue