summaryrefslogtreecommitdiff
path: root/_sram.ld
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2023-05-04 00:16:02 +0300
committerOxore <oxore@protonmail.com>2023-05-04 00:16:02 +0300
commit79ff96cb2ffb140863c48803d21d10349881f907 (patch)
treeb73a97e084eac2551115272272292a657172c714 /_sram.ld
parentf2016e84699c4f8a83e759fecac9e5dacd490a40 (diff)
Add Readme, move hello world into separate dir
Diffstat (limited to '_sram.ld')
-rw-r--r--_sram.ld26
1 files changed, 0 insertions, 26 deletions
diff --git a/_sram.ld b/_sram.ld
deleted file mode 100644
index e9fcc24..0000000
--- a/_sram.ld
+++ /dev/null
@@ -1,26 +0,0 @@
-SECTIONS {
- __stacktop = ORIGIN(SRAM) + 0xe000;
- __data_load = LOADADDR(.data);
- . = ORIGIN(SRAM);
-
- .data ALIGN(4) : {
- __data_start = .;
- *(.data)
- *(.data*)
- . = ALIGN(4);
- __data_end = .;
- } >SRAM AT >ROM
-
- .bss ALIGN(4) (NOLOAD) : {
- __bss_start = .;
- *(.bss)
- *(.bss*)
- . = ALIGN(4);
- __bss_end = .;
- *(.noinit)
- *(.noinit*)
- } >SRAM
-
- . = ALIGN(4);
- __heap_start = .;
-}