Revision: linuxbios@linuxbios.org--devel/freebios--devel--2.0--patch-51
[coreboot.git] / src / cpu / amd / car / cache_as_ram.lds
1 /* 
2  * init sections to place code running with cache as ram.
3  * 
4  * 2004 by Stefan Reinauer <stepan@openbios.org>
5  */
6
7 SECTIONS {
8         .init . : {
9                 _init = .;
10                 *(.init.text);
11                 *(.init.rodata);
12                 *(.init.rodata.*);
13                 . = ALIGN(16);
14                 _einit = .;
15         }
16
17 }