someboot 0.2.1

Sparreal OS kernel
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
    . = ALIGN(PAGE_SIZE);
    _etext = .;
    _srodata = .;
    .rodata : {
        *(.rodata)
        *(.rodata.*)
        ${rodata_extra}
        *(.data.rel.ro*)
    }
    . = ALIGN(PAGE_SIZE);
    _erodata = .;
    _sdata = .;