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


Ignore:
Timestamp:
07/16/2017 04:00:00 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
f38d645
Parents:
4cfe69a
Message:

Create output files via ELF files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • misc/ram.ld

    r4cfe69a r62340ef  
    1 OUTPUT_FORMAT("binary")
     1OUTPUT_FORMAT("elf32-m68k")
    22ENTRY(start)
    33SECTIONS
     
    55    .text (0x10000) :
    66    {
    7         *(.text)
    8         *(.rodata)
     7        *(.text .text.*)
     8        *(.rodata .rodata.*)
    99        _etext = .;
    1010    }
     
    1212    .data : ALIGN(0x10)
    1313    {
    14         *(.data)
     14        *(.data .data.*)
    1515        _edata = .;
    1616    }
     
    1818    .bss : ALIGN(0x10)
    1919    {
    20         *(.bss)
     20        *(.bss .bss.*)
    2121    }
    2222
Note: See TracChangeset for help on using the changeset viewer.