Ignore:
Timestamp:
Nov 11, 2014, 4:22:27 PM (10 years ago)
Author:
alain
Message:

Modify the "router" application to support the
explicit declaration and initialisation of the MWMR channels
by the user application itself.
Introduce the file "router.py"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/applications/router/router.ld

    r258 r451  
    33*****************************************************************************/
    44
    5 seg_code_base      = 0x00400000;
    6 seg_data_base      = 0x00500000;
     5seg_code_base      = 0x10000000;
     6seg_data_0_base    = 0x20000000;
     7seg_data_1_base    = 0x30000000;
    78
    89/***************************************************************************
     
    1718        *(.text)
    1819    }
    19     . = seg_data_base;
    20     seg_data :
     20    . = seg_data_0_base;
     21    seg_data_0 :
    2122    {
    2223        *(.ctors)
    2324        *(.rodata)
    24         /* . = ALIGN(4); */
    2525        *(.rodata.*)
    26         /* . = ALIGN(4); */
    2726        *(.data)
    28         /* . = ALIGN(4); */
    2927        *(.lit8)
    3028        *(.lit4)
    3129        *(.sdata)
    32         /* . = ALIGN(4); */
    3330        *(.bss)
    3431        *(COMMON)
    3532        *(.sbss)
    3633        *(.scommon)
     34        *(.data_in)
     35    }
     36    . = seg_data_1_base;
     37    seg_data_1 :
     38    {
     39        *(.data_out)
    3740    }
    3841}
Note: See TracChangeset for help on using the changeset viewer.