source: buchla-68k/misc/ram.ld@ 62340ef

Last change on this file since 62340ef was 62340ef, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Create output files via ELF files.

  • Property mode set to 100644
File size: 318 bytes
Line 
1OUTPUT_FORMAT("elf32-m68k")
2ENTRY(start)
3SECTIONS
4{
5 .text (0x10000) :
6 {
7 *(.text .text.*)
8 *(.rodata .rodata.*)
9 _etext = .;
10 }
11
12 .data : ALIGN(0x10)
13 {
14 *(.data .data.*)
15 _edata = .;
16 }
17
18 .bss : ALIGN(0x10)
19 {
20 *(.bss .bss.*)
21 }
22
23 _end = .;
24}
Note: See TracBrowser for help on using the repository browser.