Changeset 0acb7d0 in buchla-68k for misc/rom.ld


Ignore:
Timestamp:
07/20/2017 04:15:24 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
cd1d0db
Parents:
7913d06
Message:

Generate bios.abs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • misc/rom.ld

    r7913d06 r0acb7d0  
    33SECTIONS
    44{
    5     .text (0x100000) :
     5    .text (0x100000):
    66    {
     7        _stext = .;
    78        *(.text .text.*)
    89        *(.rodata .rodata.*)
    9         _etext = .;
     10        _etext = ALIGN(0x10);
    1011    }
    1112
    12     .data : ALIGN(0x10)
     13    .data (_etext):
    1314    {
     15        _sdata = .;
    1416        *(.data .data.*)
    1517        _edata = .;
    1618    }
    1719
    18     .bss (0x400) :
     20    .bss (0x400):
    1921    {
     22        _sbss = .;
    2023        *(.bss .bss.*)
     24        _ebss = .;
    2125    }
    22 
    23     _end = .;
    2426}
Note: See TracChangeset for help on using the changeset viewer.