- Update romcc to version 0.27 and add more tests.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@865 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
20
util/romcc/tests/ldscript.ld
Normal file
20
util/romcc/tests/ldscript.ld
Normal file
@@ -0,0 +1,20 @@
|
||||
|
||||
ENTRY(_start)
|
||||
|
||||
SECTIONS
|
||||
{
|
||||
. = 0x1000;
|
||||
.text . : {
|
||||
. = ALIGN(16);
|
||||
_start = . ;
|
||||
*(.rom.text);
|
||||
*(.text)
|
||||
. = ALIGN(16);
|
||||
}
|
||||
.data . : {
|
||||
. = ALIGN(16);
|
||||
*(.rom.data);
|
||||
*(.data)
|
||||
. = ALIGN(16);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user