kolibrios/kernel/branches/Kolibri-F/libc/bin.x
turbocat 3ee8369ec6 Kolibri-F:
- 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
2021-07-11 11:17:39 +00:00

20 lines
224 B
Plaintext

OUTPUT_FORMAT(binary)
LIBC_BASE = 0x800145ef;
SECTIONS
{
. = LIBC_BASE;
.text :
{
*(.text);
}
.data :
{
*(.data);
*(.bss);
*(.rodata);
}
_heap = ALIGN(4);
}