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
RevLine 
[62340ef]1OUTPUT_FORMAT("elf32-m68k")
[6dc5ea7]2ENTRY(start)
3SECTIONS
4{
5 .text (0x10000) :
6 {
[62340ef]7 *(.text .text.*)
8 *(.rodata .rodata.*)
[6dc5ea7]9 _etext = .;
10 }
11
12 .data : ALIGN(0x10)
13 {
[62340ef]14 *(.data .data.*)
[6dc5ea7]15 _edata = .;
16 }
17
18 .bss : ALIGN(0x10)
19 {
[62340ef]20 *(.bss .bss.*)
[6dc5ea7]21 }
22
23 _end = .;
24}
Note: See TracBrowser for help on using the repository browser.