aboutsummaryrefslogtreecommitdiff
path: root/apps/link.ld
diff options
context:
space:
mode:
authorMarvin Borner2021-03-20 19:55:51 +0100
committerGitHub2021-03-20 19:55:51 +0100
commit5132bac014d63331acf61bb60b9254023f76b869 (patch)
tree8e2946b7a6630da13ee403c787f77270aeb6185d /apps/link.ld
parent435231378798819304eef427bad8e77dffea85df (diff)
parentb96c27bba0b242fc860fc9a2fcb63f121312fa7e (diff)
Merged ELF loading
Diffstat (limited to 'apps/link.ld')
-rw-r--r--apps/link.ld32
1 files changed, 0 insertions, 32 deletions
diff --git a/apps/link.ld b/apps/link.ld
deleted file mode 100644
index 781e38d..0000000
--- a/apps/link.ld
+++ /dev/null
@@ -1,32 +0,0 @@
-OUTPUT_FORMAT("elf32-i386")
-OUTPUT_ARCH(i386)
-STARTUP(libc.a) /* HUH */
-ENTRY(_start)
-
-SECTIONS
-{
- . = 0x00000000;
-
- .text : {
- code = .;
- *(.text)
- *(.rodata)
- . = ALIGN(4096);
- }
-
- .data : {
- data = .;
- *(.data)
- . = ALIGN(4096);
- }
-
- .bss : {
- bss = .;
- *(.bss)
- . = ALIGN(4096);
- }
-
- _GLOBAL_OFFSET_TABLE_ = .;
-
- . = ALIGN(4096);
-}