USB EHCI should yield() whil waiting for controller to ack reset.
[seabios.git] / src / rombios16.lds.S
index 4793f56eceebd3888dea84284735df79025dabe6..6d382f036e2b6c805607ea913b5da3b273470a58 100644 (file)
@@ -1,21 +1,21 @@
 // Linker definitions for 16bit code
 //
-// Copyright (C) 2008  Kevin O'Connor <kevin@koconnor.net>
+// Copyright (C) 2008,2009  Kevin O'Connor <kevin@koconnor.net>
 //
 // 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")
+PHDRS
+{
+}
 SECTIONS
 {
-
-// The actual placement of the 16bit sections is determined by the
-// script tools/layoutrom.py
-#include "../out/romlayout.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) }
+        .data16 data16_start : {
+                *(.data16)
+                }
+        .text16 text16_start : {
+                *(.text16)
+                }
+        /DISCARD/ : { *(.discard*) }
 }