summaryrefslogtreecommitdiffstats
path: root/src/target_dsp/calypso/dsp_patch.lds
blob: 0695121daa80d5f5f437a3b3edf220392d4fc2b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
OUTPUT_FORMAT("coff1-c54x")
OUTPUT_ARCH("")
MEMORY
{
	dram (RWXI)   : ORIGIN = 0x015C, LENGTH = 0x0600
	apiram (RWXI) : ORIGIN = 0x2000, LENGTH = 0x1000
}
SECTIONS
{
	. = 0x015C;

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


	. = 0x2000;

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