/*
    link.ia32.scr, Copyright 1998 (c) by Lukas Ruf,
    Swiss Federal Institute of Technology,
    Computer Engineering and Networks Laboratory.

    TOPSY -- A Teachable Operating System.
             Implementation of a tiny and simple
             micro kernel for teaching purposes.

    For further information, please visit http://www.tik.ee.ethz.ch/~topsy

    This software is provided under the terms of the GNU General Public Licence.

    A full copy of the GNU GPL is provided in the file COPYING found in the 
    development root of Topsy.
*/
/*
        
        File:                  $Source: /usr/drwho/vault/cvs/topsy/Topsy/Boot/ia32/link.ia32.scr,v $
        Author(s):             Lukas Ruf
        Affiliation:           
        Version:               $Revision: 1.2 $
        Creation Date:         
        Last Date of Change:   $Date: 1999/12/13 21:48:22 $      by: $Author: ruf $
        
*/


ENTRY(__start)
SECTIONS
{
    .text  0x00000000 : {
	*(.init)
	*(.sasm)
	*(.text)
	*(.fini)
    } = 0x9090
    /* start at a fresh page for the data */
    . = ALIGN(0x1000); 
    .rodata . : {
	*(.rodata)
	*(.data)
	*(.bss)
    } 
    .sbss  . : {
	*(.sbss)
	*(.scommon)
    } 
    .bss  . : {
	*(.bss)
	*(COMMON)
    } 
}