summaryrefslogtreecommitdiffstats
path: root/Src/osmocombb/src/target_dsp/calypso/dsp_dump.lds
blob: 566330261e0b41327f3153e83fecd6a700cbeeb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
OUTPUT_FORMAT("coff1-c54x")
OUTPUT_ARCH("")
MEMORY
{
	apiram (RWXI) : ORIGIN = 0x0800, LENGTH = 0x2000
}
SECTIONS
{
	. = 0x0800;

	.apiram :
	{
		PROVIDE(_api_ram = .);
		*(.apiram)
	} > apiram

	.text :
	{
		*(.text)
	} > apiram
}