We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28cc1d4 commit c2b1437Copy full SHA for c2b1437
README.md
@@ -13,3 +13,10 @@ My goals for the project are to build a kernel that is:
13
- Low on RAM usage
14
- Good for both servers and computers
15
16
+## Structure
17
+Here's the structure for the kernel:
18
+- ``kernel``: Contains the core kernel code, this code is the actual kernel and isn't accessible by anything else
19
+- ``bios``: The BIOS version of the bootloader
20
+- ``drivers``: The kernel drivers, these drivers are mostly the internal/important ones
21
+- ``cpu``: Contains the CPU ISR, IDT and interruption handling
22
+- ``cstdlib``: The shared public C headers and implementations for the kernel related applications, these can be accessed and used by anything.s
0 commit comments