File: opense.ld

package info (click to toggle)
opense-basic 1%3A3.1.2-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 1,024 kB
  • sloc: asm: 9,758; makefile: 43
file content (32 lines) | stat: -rw-r--r-- 632 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 */
MEMORY 
{
    rom    : ORIGIN = 0x0000,          LENGTH = 0x4000

    /* 0x1b08 is used instead of 0x1b00 because some space is used after the
     * screen for snapshot file storage.... When creating _real_ speccy progs
     * loaded from tape/tzx then this space can be reclaimed. Though we're
     * only talking about 8 bytes....
     */
}

SECTIONS 
{
      . = 0x0;

      /* Define location of section .startup at beginning of usable 16K space
       */
      .text : 
      { 
          *(.text)
      } >rom

}
_end = .;
__bss_end__ = .; 

__end__ = . ;

PROVIDE (end = .);
/* end */