Update kernel readme
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 39s
Builds / ExectOS (i686) (push) Successful in 37s

This commit is contained in:
Rafal Kupiec 2024-07-10 16:10:48 +02:00
parent f52c50242a
commit 801cf64f45
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

@ -9,7 +9,7 @@ This is a list of them:
* Ar - Architecture library
* Ex - Kernel Executive
* Hl - Hardware Abstraction Layer (HAL)
* Hl - Hardware Layer
* Ke - Core kernel library
* Mm - Memory manager
* Po - Plug&Play and Power Manager
@ -26,10 +26,10 @@ The kernel executive supplies heap management, including support for allocating
pools, as well as synchronization primitives like push locks and fast mutexes, interlocked memory access, and worker
threads.
### HL: Hardware Abstraction Layer
Hardware Abstraction Layer (HAL), is a layer between the physical hardware of the computer and the rest of the operating
system. It was designed to hide differences in hardware and therefore it provides a consistent platform on which
the system and applications may run.
### HL: Hardware Layer
Hardware Layer, is a layer between the physical hardware of the computer and the rest of the operating system. It was
designed to hide differences in hardware and therefore it provides a consistent platform on which the system and
applications may run.
### KE: Kernel Library
The kernel implements its core functionality that everything else in the system depends upon. This includes basic