mirror of
https://github.com/stnolting/neorv32.git
synced 2025-04-24 14:17:51 -04:00
[rte] comment fixes
This commit is contained in:
parent
cc96a4d1c7
commit
b92faf55ff
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
|||
|
||||
/**
|
||||
* @file neorv32_rte.c
|
||||
* @brief NEORV32 Runtime Environment.
|
||||
* @brief NEORV32 Runtime Environment (RTE).
|
||||
*/
|
||||
|
||||
#include <neorv32.h>
|
||||
|
@ -49,7 +49,7 @@ void neorv32_rte_setup(void) {
|
|||
// disable all IRQ channels
|
||||
neorv32_cpu_csr_write(CSR_MIE, 0);
|
||||
|
||||
// install debug handler for all trap sources (only on core 0)
|
||||
// install debug handler for all trap sources (executed only on core 0)
|
||||
if (neorv32_cpu_csr_read(CSR_MHARTID) == 0) {
|
||||
int index;
|
||||
for (index = 0; index < ((int)NEORV32_RTE_NUM_TRAPS); index++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue