Readme and license

This commit is contained in:
karina
2026-05-03 13:05:55 +04:00
parent 038219772e
commit 2c7396353c
52 changed files with 841 additions and 11 deletions
+7 -3
View File
@@ -1,3 +1,7 @@
/* SPDX-License-Identifier: GPL-3.0-or-later
* Copyright (c) 2026 0xKSor
*/
ENTRY(_start)
KERNEL_PA = 0x40100000;
@@ -23,12 +27,12 @@ SECTIONS
.rodata : AT(ADDR(.rodata) - KERNEL_VA + KERNEL_PA) {
*(.rodata*)
} :text
. = ALIGN(4096);
.data : AT(ADDR(.data) - KERNEL_VA + KERNEL_PA) {
*(.data*)
} :data
. = ALIGN(8);
.bss : AT(ADDR(.bss) - KERNEL_VA + KERNEL_PA) {
__bss_start = .;
@@ -39,4 +43,4 @@ SECTIONS
. = ALIGN(4096);
_kernelEnd = .;
}
}