You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
434 B
Plaintext
35 lines
434 B
Plaintext
OUTPUT_FORMAT("binary")
|
|
|
|
. = 0x8200;
|
|
|
|
SECTIONS {
|
|
.prelude : {
|
|
*(.prelude)
|
|
}
|
|
|
|
.text : {
|
|
*(.text)
|
|
*(.text.*)
|
|
}
|
|
|
|
.data : {
|
|
*(.data)
|
|
*(.data.*)
|
|
}
|
|
|
|
.bss : {
|
|
*(.bss)
|
|
*(.bss.*)
|
|
}
|
|
|
|
.rodata : {
|
|
*(.rodata)
|
|
*(.rodata.*)
|
|
}
|
|
|
|
/* Define a symbol for the total length of the binary, so the prelude knows how many blocks to
|
|
* load from disk.
|
|
*/
|
|
boot1_bin_len = . - 0x8200;
|
|
}
|