mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
30 lines
524 B
Plaintext
30 lines
524 B
Plaintext
/****
|
|
**** Template for generating a linker.lds. Edit markers have replaced some items in the original file
|
|
****
|
|
**** Copyright © 2009 B Labs Ltd
|
|
****
|
|
**** Author: Russel Winder.
|
|
****/
|
|
|
|
/*
|
|
* Simple linker script for userspace or svc tasks.
|
|
*
|
|
* Copyright (C) 2007 Bahadir Balban
|
|
*/
|
|
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x2000000;
|
|
.text : { *(.text) }
|
|
.rodata : { *(.rodata) }
|
|
.rodata1 : { *(.rodata1) }
|
|
.data :
|
|
{
|
|
__LINKER_ITEMS_EDIT_MARKER__
|
|
*(.data)
|
|
}
|
|
.got : { *(.got) *(.got.plt) }
|
|
.bss : { *(.bss) }
|
|
}
|