[go: up one dir, main page]

File: colo-chain.lnk

package info (click to toggle)
colo 1.22-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, squeeze, wheezy
  • size: 1,136 kB
  • ctags: 2,325
  • sloc: ansic: 12,235; makefile: 321; asm: 121; sh: 57
file content (46 lines) | stat: -rw-r--r-- 504 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
 * (C) P.Horton 2004,2005,2006
 *
 * $Id: colo-chain.lnk 186 2006-01-17 23:03:58Z pdh $
 *
 * This code is covered by the GNU General Public License. For details see the file "COPYING".
 */

SECTIONS
{
	. = 0x80080000;

	__stack = .;

	.text :
	{
		start.o(.text)
		*(.text)
		*(.rodata*)
		__stage2 = .;
		*(.stage2)
	}

	.data :
	{
		*(.data)
	}

	.bss :	
	{
		__bss = .;
		*(.scommon)
		_gp = .;
		*(.sbss)
		*(COMMON)
		*(.bss)
		__ebss = .;
	}

	/DISCARD/ :
	{
		*(.reginfo)
	}
}

ENTRY(_start);