trying to make the keyboard driver work, right now I am suffering.

This commit is contained in:
Justus Wolff
2026-04-06 00:48:38 +02:00
parent fd968a06ce
commit 9d94299fb1
19 changed files with 590 additions and 51 deletions

View File

@@ -6,6 +6,8 @@ KERNEL_PHYS_BASE = 0x00100000;
SECTIONS {
. = KERNEL_VIRT_BASE;
kernel_start = .;
.text : AT(KERNEL_PHYS_BASE) {
*(.text)
}
@@ -22,4 +24,6 @@ SECTIONS {
*(COMMON)
*(.bss)
}
kernel_end = .;
}