trash/nice-os

Clone repo: git clone https://git.topcheto.eu/trash/nice-os.git
All branches, All tags, View raw

File contents

SECTIONS {
    .core : {
        FILL(0x0)
        core.obj(.data);
        . = 8K; /* 8KB for the core of the OS */
    }
    .bootstrap : {
        BYTE(0);
        . = 8K; /* 8KB for the custom bootstrap */
    }
}