diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/seabios-hppa/vgasrc/vgalayout.lds.S | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/seabios-hppa/vgasrc/vgalayout.lds.S')
-rw-r--r-- | roms/seabios-hppa/vgasrc/vgalayout.lds.S | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/roms/seabios-hppa/vgasrc/vgalayout.lds.S b/roms/seabios-hppa/vgasrc/vgalayout.lds.S new file mode 100644 index 000000000..c3e4f601d --- /dev/null +++ b/roms/seabios-hppa/vgasrc/vgalayout.lds.S @@ -0,0 +1,30 @@ +// Linker definitions for an option rom +// +// Copyright (C) 2009 Kevin O'Connor <kevin@koconnor.net> +// +// This file may be distributed under the terms of the GNU LGPLv3 license. + +OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386") +OUTPUT_ARCH("i386") +ENTRY(_optionrom_entry) +SECTIONS +{ + .text 0 : { + KEEP(*(.rom.header)) + *(.text.*) + _rodata = . ; + *(.rodata*) + *(.data16.*) + } + + // Discard regular data sections to force a link error if + // 16bit code attempts to access data not marked with VAR16. + /DISCARD/ : { + *(.text*) + *(.rodata*) + *(.data*) + *(.bss*) + *(COMMON) + *(.note*) + } +} |