aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/amd/car/cache_as_ram.lds
blob: 5cca0bb2833b67e0355bdf8cb568d75d75ccb840 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 
 * init sections to place code running with cache as ram.
 * 
 * 2004 by Stefan Reinauer <stepan@openbios.org>
 */

SECTIONS {
	.init . : {
		_init = .;
		*(.init.text);
		*(.init.rodata);
		*(.init.rodata.*);
		. = ALIGN(16);
		_einit = .;
	}

}