1
0

Add memory initialization to start_kernel.c

This commit is contained in:
2012-09-17 23:33:50 -04:00
parent 0b3865d16a
commit 563ad96efb
2 changed files with 53 additions and 6 deletions

View File

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