mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-04-04 21:14:58 -07:00
25 lines
279 B
Plaintext
25 lines
279 B
Plaintext
ENTRY(start)
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
*(.text)
|
|
}
|
|
|
|
.data :
|
|
{
|
|
*(.data)
|
|
}
|
|
|
|
.bss :
|
|
{
|
|
*(.bss)
|
|
}
|
|
|
|
.kernel :
|
|
{
|
|
/* Kernel code */
|
|
. = 0x9000; /* Start of kernel code section */
|
|
*(.kernel)
|
|
}
|
|
} |