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