From 4841fc79616543f7f0e220dbb5fb465368156f5a Mon Sep 17 00:00:00 2001 From: stnolting Date: Fri, 10 Jan 2025 08:47:50 +0100 Subject: [PATCH] [processor_check] minor code update --- sw/example/processor_check/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/example/processor_check/main.c b/sw/example/processor_check/main.c index c8e6430cf..a72468a63 100644 --- a/sw/example/processor_check/main.c +++ b/sw/example/processor_check/main.c @@ -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();