currently, BAR fields of IDE drives are all returning zero, and the ATA read function isn't working. i'm not sure why. i'm going to work on VESA next, and come back to the IDE driver later
17 lines
176 B
Text
17 lines
176 B
Text
OUTPUT_FORMAT(elf32-i386)
|
|
OUTPUT_ARCH(i386)
|
|
|
|
SECTIONS {
|
|
.text : {
|
|
*(.text)
|
|
}
|
|
.rodata : {
|
|
*(.rodata)
|
|
}
|
|
.data : {
|
|
*(.data)
|
|
}
|
|
.bss : {
|
|
*(.bss)
|
|
}
|
|
}
|