From 256564548964cb98d20a5d3fa51ba4288aab3d18 Mon Sep 17 00:00:00 2001 From: stnolting Date: Sun, 15 Sep 2024 21:40:37 +0200 Subject: [PATCH] [sw/common] remove unused linker script symbols --- sw/common/neorv32.ld | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sw/common/neorv32.ld b/sw/common/neorv32.ld index 283189013..41b7a6dac 100644 --- a/sw/common/neorv32.ld +++ b/sw/common/neorv32.ld @@ -289,9 +289,7 @@ SECTIONS /* Export symbols for neorv32 crt0 start-up code */ /* ************************************************************************************************* */ PROVIDE(__crt0_max_heap = __neorv32_heap_size); - PROVIDE(__crt0_imem_begin = ORIGIN(rom)); - PROVIDE(__crt0_dmem_begin = ORIGIN(ram)); - PROVIDE(__crt0_stack_end = (ORIGIN(ram) + LENGTH(ram)) - 1); + PROVIDE(__crt0_ram_last = (ORIGIN(ram) + LENGTH(ram)) - 1); PROVIDE(__crt0_bss_start = __BSS_START__); PROVIDE(__crt0_bss_end = __BSS_END__); PROVIDE(__crt0_copy_data_src_begin = LOADADDR(.data));