diff options
-rw-r--r-- | src/rombios.lds.S | 2 | ||||
-rw-r--r-- | src/rombios16.lds.S | 2 | ||||
-rw-r--r-- | src/rombios32.lds.S | 4 |
3 files changed, 2 insertions, 6 deletions
diff --git a/src/rombios.lds.S b/src/rombios.lds.S index 61a04c4..e43822a 100644 --- a/src/rombios.lds.S +++ b/src/rombios.lds.S @@ -4,8 +4,6 @@ // // This file may be distributed under the terms of the GNU LGPLv3 license. -#include "config.h" - OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386") OUTPUT_ARCH("i386") ENTRY(post32); diff --git a/src/rombios16.lds.S b/src/rombios16.lds.S index 61de421..c52afdb 100644 --- a/src/rombios16.lds.S +++ b/src/rombios16.lds.S @@ -4,7 +4,7 @@ // // This file may be distributed under the terms of the GNU LGPLv3 license. -#include "config.h" +#include "config.h" // BUILD_BIOS_ADDR OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386") OUTPUT_ARCH("i386") diff --git a/src/rombios32.lds.S b/src/rombios32.lds.S index 6d73537..4aa88f0 100644 --- a/src/rombios32.lds.S +++ b/src/rombios32.lds.S @@ -4,7 +4,7 @@ // // This file may be distributed under the terms of the GNU LGPLv3 license. -#include "config.h" +#include "config.h" // BUILD_BIOS_ADDR OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386") OUTPUT_ARCH("i386") @@ -17,8 +17,6 @@ SECTIONS code32_rodata = . ; *(.rodata*) *(.data) - . = ALIGN(16) ; - code32_bss = . ; *(.bss) *(COMMON) } |