summaryrefslogtreecommitdiff
path: root/linkscript.ld
blob: 897ef57e335b29000c08e69de513a1934b02263c (plain)
1
2
3
4
5
6
7
8
SECTIONS {
	.init 0x8000 : { *(.init) }
	. = ALIGN(0x1000);
	. = . + 0x800;
	stack_svc = .;
	. = . + 0x800;
	stack_usr = .;
}