CMOS clock

This commit is contained in:
Alex
2022-10-09 04:02:41 +03:00
parent 7c4d43fec3
commit f3aea7e1bd
7 changed files with 213 additions and 129 deletions

11
core/README.md Normal file
View File

@ -0,0 +1,11 @@
# Core components
This directory contains the core components of the project. These components are used by the kernel to provide the basic functionality of the operating system.
---
## 💾 Memory
Contains the memory management code.
It is responsible for allocating and freeing memory.
It also provides the `kmalloc`, `kcalloc`, `krealloc` and `kfree` functions that are used by the rest of the kernel.