mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2024-11-22 06:06:52 -08:00
17 lines
173 B
Plaintext
17 lines
173 B
Plaintext
|
ENTRY(_start)
|
||
|
|
||
|
SECTIONS {
|
||
|
. = 0x100000;
|
||
|
|
||
|
.text : {
|
||
|
*(.text)
|
||
|
}
|
||
|
|
||
|
.data : {
|
||
|
*(.data)
|
||
|
}
|
||
|
|
||
|
.bss : {
|
||
|
*(.bss)
|
||
|
}
|
||
|
}
|