mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-11-16 22:35:26 -08:00
15 lines
186 B
Plaintext
15 lines
186 B
Plaintext
SECTIONS {
|
|
. = 0x7e00;
|
|
|
|
.text : { *(.text*) }
|
|
.rodata : { *(.rodata*) }
|
|
.data : { *(.data*) }
|
|
|
|
.bss : {
|
|
*(.bss*)
|
|
*(COMMON)
|
|
}
|
|
|
|
read_buf = .;
|
|
}
|