We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c7120d commit 4fa53d0Copy full SHA for 4fa53d0
packagetest/Inputs/microbit.ld
@@ -1,7 +1,9 @@
1
-__flash = 0x00000000; /* starting address of flash */
2
-__flash_size = 0x40000; /* length of flash */
3
-__ram = 0x20000000; /* starting address of RAM bank 0 */
4
-__ram_size = 0x4000; /* length of RAM bank 0 */
+__boot_flash = 0x00000000; /* fragment of the flash where interrupt vector goes */
+__boot_flash_size = 0x1000; /* length of flash fragment with interrupt vector */
+__flash = 0x00001000; /* starting address of the remaining flash */
+__flash_size = 0x3f000; /* length of the remaining flash */
5
+__ram = 0x20000000; /* starting address of RAM bank 0 */
6
+__ram_size = 0x4000; /* length of RAM bank 0 */
7
__stack_size = 512;
8
9
INCLUDE picolibcpp.ld
0 commit comments