From 47108dd318960c1d1281726b8ef196cf922cf76b Mon Sep 17 00:00:00 2001 From: Jason2866 <24528715+Jason2866@users.noreply.github.com> Date: Mon, 5 Feb 2024 18:10:59 +0100 Subject: [PATCH] Delete flasher_stub/ld/stub_32h2_beta_1.ld --- flasher_stub/ld/stub_32h2_beta_1.ld | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 flasher_stub/ld/stub_32h2_beta_1.ld diff --git a/flasher_stub/ld/stub_32h2_beta_1.ld b/flasher_stub/ld/stub_32h2_beta_1.ld deleted file mode 100644 index 62b16372c..000000000 --- a/flasher_stub/ld/stub_32h2_beta_1.ld +++ /dev/null @@ -1,26 +0,0 @@ -MEMORY { - iram : org = 0x40380000, len = 0x4000 - dram : org = 0x3FC84000, len = 0x18000 -} - -ENTRY(stub_main) - -SECTIONS { - .text : ALIGN(4) { - *(.literal) - *(.text .text.*) - } > iram - - .bss : ALIGN(4) { - _bss_start = ABSOLUTE(.); - *(.bss) - _bss_end = ABSOLUTE(.); - } > dram - - .data : ALIGN(4) { - *(.data) - *(.rodata .rodata.*) - } > dram -} - -INCLUDE "rom_32h2_beta_1.ld"