From 642b5fb0007b64c77d186fcb018d571152ee1d47 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Mon, 14 Aug 2023 18:51:07 +0200 Subject: reorganization: first steps --- src/user/linker.ld | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 src/user/linker.ld (limited to 'src/user/linker.ld') diff --git a/src/user/linker.ld b/src/user/linker.ld deleted file mode 100644 index 4925448..0000000 --- a/src/user/linker.ld +++ /dev/null @@ -1,23 +0,0 @@ -ENTRY(_start) - -SECTIONS -{ - __executable_start = .; - .text BLOCK(4K) : ALIGN(4K) - { - *(.text) - } - .rodata BLOCK(4K) : ALIGN(4K) - { - *(.rodata) - } - .data BLOCK(4K) : ALIGN(4K) - { - *(.data) - } - .bss BLOCK(4K) : ALIGN(4K) - { - *(COMMON) - *(.bss) - } -} -- cgit v1.2.3