- 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:
Eric Biederman
2003-06-10 21:22:07 +00:00
parent dc18ef018d
commit 6aa31cc754
18 changed files with 6759 additions and 1052 deletions

View 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);
}
}