source: branches/reconfiguration/modules/dspin_router/caba/test/soft.ld @ 934

Last change on this file since 934 was 887, checked in by cfuguet, 9 years ago

reconf: add test for the recovery routing function on the dspin_router

  • The test performs a reconfiguration of a cycle-free contour around a blackhole in a 3x3 platform. The blackhole (faulty routers) is in the cluster (1,1).
  • Introduce a reconf:xicu driver in the softs directory. For now this driver contains only a getter/setter for the configuration registers in the reconf:vci_xicu.
File size: 674 bytes
Line 
1/**********************************************************
2  File   : ldscript
3  Author : Cesar Fuguet
4  Date   : June 2011
5**********************************************************/
6
7/* Definition of the base address for code segment */
8
9seg_code_base = 0xBFC00000;
10seg_data_base = 0x00001000;
11
12/* Grouping sections into segments */
13
14ENTRY(reset)
15
16SECTIONS
17{
18    . = seg_code_base;
19    .text :
20    {
21        *(.reset)
22        *(.text)
23        *(.text.*)
24        *(.rodata)
25        *(.rodata.*)
26    }
27
28    . = seg_data_base;
29    .bss ALIGN(0x4) (NOLOAD) :
30    {
31        *(.data)
32        *(.bss)
33    }
34}
35
36/*
37 * vim: tabstop=4 : softtabstop=4 : shiftwidth=4 : expandtab
38 */
Note: See TracBrowser for help on using the repository browser.