1
0

Initial commit

This commit is contained in:
2012-09-03 23:44:36 -04:00
commit 4be5ceeec6
6 changed files with 107 additions and 0 deletions

9
link.ld Normal file
View File

@ -0,0 +1,9 @@
ENTRY (_start)
SECTIONS
{
. = 0;
.text : { *(.text*) *(.rodata*) }
.data : { *(.data*) }
.bss : { *(.bss*) *(COMMON*) }
}