WIP cores scheduler

This commit is contained in:
Ayke van Laethem
2025-01-13 17:31:34 +01:00
parent cce44b5ebb
commit 04242fd620
28 changed files with 737 additions and 74 deletions
+9
View File
@@ -32,6 +32,15 @@ SECTIONS
_stack_top = .;
} >RAM
/* Stack for second core (core 1), if there is one. This memory area won't be
* reserved if there is no second core. */
.stack1 (NOLOAD) :
{
. = ALIGN(4);
. += _stack_size;
_stack1_top = .;
} >RAM
/* Start address (in flash) of .data, used by startup code. */
_sidata = LOADADDR(.data);