source: trunk/softs/tests_cc_vcache/test_itlb_inval/ldscript @ 520

Last change on this file since 520 was 520, checked in by bouyer, 11 years ago

Re-add the tests; reverting previous which was done at the wrong level (sorry)

  • Property svn:executable set to *
File size: 1.4 KB
Line 
1/*
2 *
3 * SOCLIB_GPL_HEADER_BEGIN
4 *
5 * This file is part of SoCLib, GNU GPLv2.
6 *
7 * SoCLib is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * SoCLib is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with SoCLib; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 * 02110-1301, USA.
20 *
21 * SOCLIB_GPL_HEADER_END
22 *
23 * Copyright (c) UPMC, Lip6, SoC
24 *         Nicolas Pouillon <nipo@ssji.net>, 2006-2007
25 *
26 * Maintainers: abdelmalek.si-merabet@lip6.fr
27 */
28ENTRY(_start)
29
30SECTIONS
31{
32   . = 0xbfc00000;
33   .text : {
34      *(.text)
35/* load .text2 one page after .text */
36      . = ALIGN(0x1000);
37      *(.text2)
38   }
39   .rodata : {
40      *(.rodata)
41      . = ALIGN(4);
42   }
43   . = 0x00000000;
44   .data  : {
45      *(.data)
46   }
47   .sdata : {
48      *(.lit8)
49      *(.lit4)
50      *(.sdata)
51   }
52   _gp = .;
53   . = ALIGN(4);
54   _edata = .;
55   .sbss  : {
56      *(.sbss)
57      *(.scommon)
58   }
59   .bss   : {
60      *(.bss)
61      *(COMMON)
62   }
63   . = ALIGN(4);
64   _end = .;
65   _heap = .;
66   _stack = 0x00400000-16;
67}
Note: See TracBrowser for help on using the repository browser.