Badloader/linker.ld

15 lines
No EOL
140 B
Text

SECTIONS {
. = 0x7E00;
.text : {
*(.text)
}
.data : {
*(.data)
}
.bss : {
*(.bss)
}
}