per-line scrolling test
[mdlife] / z80.ld
1 MEMORY {
2         ram : ORIGIN = 0, LENGTH = 0x2000
3 }
4
5 SECTIONS {
6         /* reset and interrupt vectors */
7         .vect : { * (.vect); }
8         /* we only need vectors up to 38h for IM 1 */
9         . = 0x40;
10         .text : { * (.text*); }
11         .rodata : { * (.rodata); }
12         .data : { * (.data); }
13         .bss : {
14                 _bss_start = .;
15                 * (.bss);
16                 . = ALIGN(2)
17                 _bss_end = .;
18         }
19         _bss_size = SIZEOF(.bss);
20 }