Dir cleanup
This commit is contained in:
25
src/bootsect.ld
Normal file
25
src/bootsect.ld
Normal file
@@ -0,0 +1,25 @@
|
||||
SECTIONS {
|
||||
. = 0x7c00;
|
||||
|
||||
.text : {
|
||||
KEEP(*(.init))
|
||||
*(.text*)
|
||||
}
|
||||
|
||||
.rodata : {
|
||||
*(.rodata*)
|
||||
}
|
||||
|
||||
.bss (NOLOAD) : {
|
||||
* (.bss)
|
||||
}
|
||||
|
||||
.data (NOLOAD) : {
|
||||
*(.data)
|
||||
}
|
||||
|
||||
. = 0x7dfe;
|
||||
.magic : {
|
||||
SHORT(0xAA55);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user