// Placement of the 16bit code. // // Copyright (C) 2008,2009 Kevin O'Connor // // This file may be distributed under the terms of the GNU LGPLv3 license. #include "config.h" // BUILD_BIOS_ADDR OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386") OUTPUT_ARCH("i386") SECTIONS { // The actual placement of the 16bit sections is determined by the // script tools/layoutrom.py #include "../out/romlayout16.lds" // 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) } }