diff options
author | Marvin Borner | 2021-03-20 18:46:33 +0100 |
---|---|---|
committer | Marvin Borner | 2021-03-20 18:46:33 +0100 |
commit | 635751fc2a75f66d1541469b3204efb1701bd91c (patch) | |
tree | 2cb5ac0484acb2427504b681a021d6c2fe19d0f8 /apps/link.ld | |
parent | c97a50ba7baa70b40431594f410ca18e14af3b76 (diff) |
Even more fixes! :^)
Diffstat (limited to 'apps/link.ld')
-rw-r--r-- | apps/link.ld | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/apps/link.ld b/apps/link.ld index 781e38d..e28bb34 100644 --- a/apps/link.ld +++ b/apps/link.ld @@ -1,11 +1,10 @@ OUTPUT_FORMAT("elf32-i386") OUTPUT_ARCH(i386) -STARTUP(libc.a) /* HUH */ ENTRY(_start) SECTIONS { - . = 0x00000000; + . = 0x40000000; .text : { code = .; @@ -26,7 +25,5 @@ SECTIONS . = ALIGN(4096); } - _GLOBAL_OFFSET_TABLE_ = .; - . = ALIGN(4096); } |