summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/doc/SPECIFICATION.md
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-20 20:05:08 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-20 20:05:08 +0100
commit1d07547776d6890c4b4115ddc265b35e68f87936 (patch)
tree8a6d14d3c215c8d9d0e01c6fa57efcc0d3986316 /dev/Kernel/doc/SPECIFICATION.md
parent551c234bf46e5c556ce782ece189974256a45e11 (diff)
doc: Refactor names in directory.
Diffstat (limited to 'dev/Kernel/doc/SPECIFICATION.md')
-rw-r--r--dev/Kernel/doc/SPECIFICATION.md63
1 files changed, 0 insertions, 63 deletions
diff --git a/dev/Kernel/doc/SPECIFICATION.md b/dev/Kernel/doc/SPECIFICATION.md
deleted file mode 100644
index 2cdee1f0..00000000
--- a/dev/Kernel/doc/SPECIFICATION.md
+++ /dev/null
@@ -1,63 +0,0 @@
-===================================
-
-# 0: General Information
-
-===================================
-
-- ABI and Format: PEF/PE32+.
-- Kernel architecture: Portable hybrid Kernel.
-- Language: C++/(Assembly (AMD64, X64000, X86S, ARM64, POWER, RISCV))
-
-===================================
-
-# 1: The Kernel
-
-===================================
-
-- Drive/Device Abstraction.
-- SMP, Preemptive Multi Threading.
-- Separation of Files/Devices.
-- Networking.
-- Hardware Abstraction Layer.
-- Native Filesystem support (NeFS, FAT32 and ffs2).
-- Program Loaders interfaces.
-- TLS (Thread Local Storage) support.
-- BinaryMutex, Locks, Timers.
-- Canary mechanisms.
-- Dynamic Sys.
-- Cross Platform.
-- Permission Selectors.
-
-===================================
-
-# 2: The Filesystem
-
-===================================
-
-- Catalog object with associated forks.
-- Large storage support.
-- Long file names.
-- UNIX path style.
-
-==================================
-
-# 3: Common naming conventions:
-
-==================================
-
-- Kernel -> ke_init_x
-- RunTime -> rt_copy_mem
-- Hal -> hal_foo_bar
-- Class methods -> Class::FooBar
-
-===================================
-
-# 4: The BootZ
-
-===================================
-
-- Capable of booting from a network drive.
-- Loads a PE file which is the Kernel.
-- Sanity checks, based on the number of sections.
-- Handover compliant.
-- Does check for a valid partition (useful in the case of recovering)