Changeset 8325447 in buchla-68k for misc/ram.ld


Ignore:
Timestamp:
08/07/2017 02:04:35 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
27c8d40
Parents:
84c0125
Message:

Removed _ prefix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • misc/ram.ld

    r84c0125 r8325447  
    55    .text (0x10000):
    66    {
    7         _stext = .;
     7        stext = .;
    88        *(.text .text.*)
    99        *(.rodata .rodata.*)
    1010        . = ALIGN(0x10);
    11         _etext = .;
     11        etext = .;
    1212    }
    1313
    14     .data (_etext):
     14    .data (etext):
    1515    {
    16         _sdata = .;
     16        sdata = .;
    1717        *(.data .data.*)
    1818        . = ALIGN(0x10);
    19         _edata = .;
     19        edata = .;
    2020    }
    2121
    22     .bss (_edata):
     22    .bss (edata):
    2323    {
    24         _sbss = .;
     24        sbss = .;
    2525        *(.bss .bss.*)
    26         _ebss = .;
     26        ebss = .;
    2727    }
    2828
    29     _end = .;
     29    end = .;
    3030}
Note: See TracChangeset for help on using the changeset viewer.