Ignore:
Timestamp:
Jun 17, 2013, 11:38:40 PM (11 years ago)
Author:
alain
Message:

Introducing a new global vseg : seg_boot_data, in order
to clearly separate the seg_boot_code (Read-Only) and
the seg_boot_data (Read/Write?). This is mandatory,
if the boot code is stored in a real ROM.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/boot/boot.ld

    r203 r245  
    1717        *(.boot)
    1818        *(.text)
    19 
    2019        *(.rodata)
    2120        *(.rodata.*)
    22         *(.data)
    23         *(.lit8)
    24         *(.lit4)
    25         *(.sdata)
    26         *(.bss)
    27         *(COMMON)
    28         *(.sbss)
    29         *(.scommon)
     21    }
     22
     23    . = seg_boot_data_base;
     24    seg_boot_data :
     25    {
     26        *(.wdata)
    3027    }
    3128}
Note: See TracChangeset for help on using the changeset viewer.