mirror of
https://github.com/drasko/codezero.git
synced 2026-01-15 12:23:15 +01:00
24 lines
362 B
Plaintext
24 lines
362 B
Plaintext
/*
|
|
* Simple linker script for userspace or svc tasks.
|
|
*
|
|
* Copyright (C) 2007 Bahadir Balban
|
|
*/
|
|
|
|
virtual_base = 0x10000000;
|
|
|
|
/* First page before the env/args */
|
|
|
|
|
|
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
{
|
|
. = virtual_base;
|
|
.text : { *(.text.head) *(.text) }
|
|
.rodata : { *(.rodata) }
|
|
.rodata1 : { *(.rodata1) }
|
|
. = ALIGN(4K);
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) }
|
|
}
|