forked from KolibriOS/kolibrios
3ee8369ec6
- Added sprintf to the kernel. - Added a notification from @notify when there are exceptions in the application. - Added debug files to bochs git-svn-id: svn://kolibrios.org@9051 a494cfbc-eb01-0410-851d-a64ba20cac60
20 lines
224 B
Plaintext
20 lines
224 B
Plaintext
OUTPUT_FORMAT(binary)
|
|
|
|
LIBC_BASE = 0x800145ef;
|
|
|
|
SECTIONS
|
|
{
|
|
. = LIBC_BASE;
|
|
.text :
|
|
{
|
|
*(.text);
|
|
}
|
|
.data :
|
|
{
|
|
*(.data);
|
|
*(.bss);
|
|
*(.rodata);
|
|
}
|
|
_heap = ALIGN(4);
|
|
}
|