Skip to content

Commit

Permalink
[processor_check] minor code update
Browse files Browse the repository at this point in the history
  • Loading branch information
stnolting committed Jan 10, 2025
1 parent ff82994 commit 4841fc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sw/example/processor_check/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2154,7 +2154,7 @@ int main() {
neorv32_cpu_csr_write(CSR_MIE, 1 << CSR_MIE_MSIE);

// launch core 1
tmp_a = (uint32_t)neorv32_smp_launch(1, core1_main, (uint8_t*)core1_stack, sizeof(core1_stack));
tmp_a = (uint32_t)neorv32_smp_launch(core1_main, (uint8_t*)core1_stack, sizeof(core1_stack));

// wait for software interrupt (issued by core 1) in sleep mode
neorv32_cpu_sleep();
Expand Down

0 comments on commit 4841fc7

Please sign in to comment.