kernel - v0.7 beta

+ acpi: add acpi support
+ lapic: add lapic support
+ ioapic: add ioapic support
+ arch/x86_64: add support for "syscall"/"sysret"
This commit is contained in:
RaphProductions 2025-05-15 18:49:09 +02:00
parent 4d52bac946
commit a8e919b033
53 changed files with 772 additions and 331 deletions

View file

@ -7,6 +7,7 @@ The Soaplin kernel is a new Unix-like operating system kernel.
* Simple pre-emptive scheduler
* Ring 3 (user mode) support
* ELF loader
* ACPI
## In the works
* Virtual File System
@ -28,4 +29,9 @@ To build Soaplin, you must ensure you have these:
* A compiler (In the future, a custom toolchain would be built.)
* A linker
Clone the repo, and run "make" in it!
Clone the repo, and run "make" in it!
## Acknowledgements
Thanks to all these people :heart:
* Kevin Alavik (kevinalavik): VMAs implementation
* Astrido (asterd-og): IOAPIC/LAPIC (from ZanOS)