diff options
author | Marvin Borner | 2021-03-20 19:52:56 +0100 |
---|---|---|
committer | Marvin Borner | 2021-03-20 19:52:56 +0100 |
commit | b96c27bba0b242fc860fc9a2fcb63f121312fa7e (patch) | |
tree | 0febf9d97020f131055ee41fe6d8b8bd6593045a /apps/link.ld | |
parent | 635751fc2a75f66d1541469b3204efb1701bd91c (diff) |
LGTM!
Diffstat (limited to 'apps/link.ld')
-rw-r--r-- | apps/link.ld | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/apps/link.ld b/apps/link.ld deleted file mode 100644 index e28bb34..0000000 --- a/apps/link.ld +++ /dev/null @@ -1,29 +0,0 @@ -OUTPUT_FORMAT("elf32-i386") -OUTPUT_ARCH(i386) -ENTRY(_start) - -SECTIONS -{ - . = 0x40000000; - - .text : { - code = .; - *(.text) - *(.rodata) - . = ALIGN(4096); - } - - .data : { - data = .; - *(.data) - . = ALIGN(4096); - } - - .bss : { - bss = .; - *(.bss) - . = ALIGN(4096); - } - - . = ALIGN(4096); -} |