1/*
2 * Copyright 2016, Data61
3 * Commonwealth Scientific and Industrial Research Organisation (CSIRO)
4 * ABN 41 687 119 230.
5 *
6 * This software may be distributed and modified according to the terms of
7 * the BSD 2-Clause license. Note that NO WARRANTY is provided.
8 * See "LICENSE_BSD2.txt" for details.
9 *
10 * @TAG(D61_BSD)
11 */
12
13ENTRY(_start)
14
15SECTIONS
16{
17    PROVIDE (__executable_start = 0xDF000000);
18    . = 0xDF000000;
19
20    /* Code. */
21    .text : ALIGN(4096) {
22        _text = .;
23        *(.text*)
24    }
25
26    /* Read Only Data. */
27    .rodata : ALIGN(4096) {
28        . = ALIGN(32);
29        *(.rodata*)
30    }
31
32    /* Data / BSS */
33    .data : ALIGN(4096) {
34        *(.data)
35    }
36    .bss : ALIGN(4096) {
37        *(.bss)
38        *(COMMON)
39    }
40}
41