Changeset cc2c9e0 in buchla-68k for misc


Ignore:
Timestamp:
08/06/2017 06:20:53 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
15854f1
Parents:
609839c
Message:

Fix linker scripts.

Location:
misc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • misc/ram.ld

    r609839c rcc2c9e0  
    88        *(.text .text.*)
    99        *(.rodata .rodata.*)
    10         _etext = ALIGN(0x10);
     10        . = ALIGN(0x10);
     11        _etext = .;
    1112    }
    1213
     
    1516        _sdata = .;
    1617        *(.data .data.*)
    17         _edata = ALIGN(0x10);
     18        . = ALIGN(0x10);
     19        _edata = .;
    1820    }
    1921
  • misc/rom.ld

    r609839c rcc2c9e0  
    88        *(.text .text.*)
    99        *(.rodata .rodata.*)
    10         _etext = ALIGN(0x10);
     10        . = ALIGN(0x10);
     11        _etext = .;
    1112    }
    1213
Note: See TracChangeset for help on using the changeset viewer.