aboutsummaryrefslogtreecommitdiff
path: root/docs/pre/arch/x86_64/memory
diff options
context:
space:
mode:
Diffstat (limited to 'docs/pre/arch/x86_64/memory')
-rw-r--r--docs/pre/arch/x86_64/memory/allocator.rst9
-rw-r--r--docs/pre/arch/x86_64/memory/allocator/area_frame_allocator.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/allocator/concept.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/allocator/physical_frame.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/allocator/tiny_frame_allocator.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/cpu.rst9
-rw-r--r--docs/pre/arch/x86_64/memory/heap.rst9
-rw-r--r--docs/pre/arch/x86_64/memory/heap/bump_allocator.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/heap/global_heap_allocator.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/heap/heap_allocator.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/heap/linked_list_allocator.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/heap/memory_block.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/heap/user_heap_allocator.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/main.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/multiboot.rst9
-rw-r--r--docs/pre/arch/x86_64/memory/multiboot/elf_symbols_section.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/multiboot/info.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/multiboot/memory_map.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/multiboot/reader.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/paging.rst9
-rw-r--r--docs/pre/arch/x86_64/memory/paging/active_page_table.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/paging/inactive_page_table.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/paging/kernel_mapper.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/paging/page_entry.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/paging/page_table.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/paging/temporary_page.rst5
-rw-r--r--docs/pre/arch/x86_64/memory/paging/virtual_page.rst5
27 files changed, 0 insertions, 155 deletions
diff --git a/docs/pre/arch/x86_64/memory/allocator.rst b/docs/pre/arch/x86_64/memory/allocator.rst
deleted file mode 100644
index 6ce0a74..0000000
--- a/docs/pre/arch/x86_64/memory/allocator.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-Physical Frame Allocator Subsystem
-===========
-
-.. toctree::
- :maxdepth: 2
- :caption: Contents:
- :glob:
-
- allocator/*
diff --git a/docs/pre/arch/x86_64/memory/allocator/area_frame_allocator.rst b/docs/pre/arch/x86_64/memory/allocator/area_frame_allocator.rst
deleted file mode 100644
index 422f33c..0000000
--- a/docs/pre/arch/x86_64/memory/allocator/area_frame_allocator.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Area Physical Frame Allocator
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/allocator/area_frame_allocator.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/allocator/concept.rst b/docs/pre/arch/x86_64/memory/allocator/concept.rst
deleted file mode 100644
index 734a2ce..0000000
--- a/docs/pre/arch/x86_64/memory/allocator/concept.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Physical Frame Allocator Concept
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/allocator/concept.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/allocator/physical_frame.rst b/docs/pre/arch/x86_64/memory/allocator/physical_frame.rst
deleted file mode 100644
index c5d0fd2..0000000
--- a/docs/pre/arch/x86_64/memory/allocator/physical_frame.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Physical Frame
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/allocator/physical_frame.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/allocator/tiny_frame_allocator.rst b/docs/pre/arch/x86_64/memory/allocator/tiny_frame_allocator.rst
deleted file mode 100644
index 27401b2..0000000
--- a/docs/pre/arch/x86_64/memory/allocator/tiny_frame_allocator.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Tiny Physical Frame Allocator
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/allocator/tiny_frame_allocator.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/cpu.rst b/docs/pre/arch/x86_64/memory/cpu.rst
deleted file mode 100644
index 4cb5af0..0000000
--- a/docs/pre/arch/x86_64/memory/cpu.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-CPU Registers Subsystem
-===========
-
-.. toctree::
- :maxdepth: 2
- :caption: Contents:
- :glob:
-
- cpu/*
diff --git a/docs/pre/arch/x86_64/memory/heap.rst b/docs/pre/arch/x86_64/memory/heap.rst
deleted file mode 100644
index 409d93a..0000000
--- a/docs/pre/arch/x86_64/memory/heap.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-Heap Memory Subsystem
-===========
-
-.. toctree::
- :maxdepth: 2
- :caption: Contents:
- :glob:
-
- heap/*
diff --git a/docs/pre/arch/x86_64/memory/heap/bump_allocator.rst b/docs/pre/arch/x86_64/memory/heap/bump_allocator.rst
deleted file mode 100644
index b20916e..0000000
--- a/docs/pre/arch/x86_64/memory/heap/bump_allocator.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Kernel Heap Bump Allocator
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/heap/bump_allocator.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/heap/global_heap_allocator.rst b/docs/pre/arch/x86_64/memory/heap/global_heap_allocator.rst
deleted file mode 100644
index 60ec0b5..0000000
--- a/docs/pre/arch/x86_64/memory/heap/global_heap_allocator.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Global Heap Allocator
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/heap/global_heap_allocator.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/heap/heap_allocator.rst b/docs/pre/arch/x86_64/memory/heap/heap_allocator.rst
deleted file mode 100644
index b410e41..0000000
--- a/docs/pre/arch/x86_64/memory/heap/heap_allocator.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Kernel Heap Allocator
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/heap/heap_allocator.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/heap/linked_list_allocator.rst b/docs/pre/arch/x86_64/memory/heap/linked_list_allocator.rst
deleted file mode 100644
index d156852..0000000
--- a/docs/pre/arch/x86_64/memory/heap/linked_list_allocator.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Kernel Heap Linked List Allocator
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/heap/linked_list_allocator.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/heap/memory_block.rst b/docs/pre/arch/x86_64/memory/heap/memory_block.rst
deleted file mode 100644
index 8ed6566..0000000
--- a/docs/pre/arch/x86_64/memory/heap/memory_block.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Heap Linked List Free Memory Block
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/heap/memory_block.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/heap/user_heap_allocator.rst b/docs/pre/arch/x86_64/memory/heap/user_heap_allocator.rst
deleted file mode 100644
index d0febb6..0000000
--- a/docs/pre/arch/x86_64/memory/heap/user_heap_allocator.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-User Heap Linked List Allocator
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/heap/user_heap_allocator.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/main.rst b/docs/pre/arch/x86_64/memory/main.rst
deleted file mode 100644
index d9a9f39..0000000
--- a/docs/pre/arch/x86_64/memory/main.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Memory Main
-===========
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/main.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/multiboot.rst b/docs/pre/arch/x86_64/memory/multiboot.rst
deleted file mode 100644
index 22ec3f2..0000000
--- a/docs/pre/arch/x86_64/memory/multiboot.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-Kernel Multiboot Subsystem
-===========
-
-.. toctree::
- :maxdepth: 2
- :caption: Contents:
- :glob:
-
- multiboot/*
diff --git a/docs/pre/arch/x86_64/memory/multiboot/elf_symbols_section.rst b/docs/pre/arch/x86_64/memory/multiboot/elf_symbols_section.rst
deleted file mode 100644
index bbd6dfb..0000000
--- a/docs/pre/arch/x86_64/memory/multiboot/elf_symbols_section.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Multiboot ELF Header Symbols Section Structure
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/multiboot/elf_symbols_section.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/multiboot/info.rst b/docs/pre/arch/x86_64/memory/multiboot/info.rst
deleted file mode 100644
index 847870d..0000000
--- a/docs/pre/arch/x86_64/memory/multiboot/info.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Multiboot Header Information Structure
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/multiboot/info.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/multiboot/memory_map.rst b/docs/pre/arch/x86_64/memory/multiboot/memory_map.rst
deleted file mode 100644
index 9c77331..0000000
--- a/docs/pre/arch/x86_64/memory/multiboot/memory_map.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Multiboot Memory Map Header Structure
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/multiboot/memory_map.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/multiboot/reader.rst b/docs/pre/arch/x86_64/memory/multiboot/reader.rst
deleted file mode 100644
index fac98e2..0000000
--- a/docs/pre/arch/x86_64/memory/multiboot/reader.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Multiboot Reader
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/multiboot/reader.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/paging.rst b/docs/pre/arch/x86_64/memory/paging.rst
deleted file mode 100644
index 10cd976..0000000
--- a/docs/pre/arch/x86_64/memory/paging.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-Virtual Page Table Paging Subsystem
-===========
-
-.. toctree::
- :maxdepth: 2
- :caption: Contents:
- :glob:
-
- paging/*
diff --git a/docs/pre/arch/x86_64/memory/paging/active_page_table.rst b/docs/pre/arch/x86_64/memory/paging/active_page_table.rst
deleted file mode 100644
index 5710131..0000000
--- a/docs/pre/arch/x86_64/memory/paging/active_page_table.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Active Page Table
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/paging/active_page_table.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/paging/inactive_page_table.rst b/docs/pre/arch/x86_64/memory/paging/inactive_page_table.rst
deleted file mode 100644
index 5732e64..0000000
--- a/docs/pre/arch/x86_64/memory/paging/inactive_page_table.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Inactive Page Table
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/paging/inactive_page_table.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/paging/kernel_mapper.rst b/docs/pre/arch/x86_64/memory/paging/kernel_mapper.rst
deleted file mode 100644
index 9948e4e..0000000
--- a/docs/pre/arch/x86_64/memory/paging/kernel_mapper.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Kernel Mapper
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/paging/kernel_mapper.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/paging/page_entry.rst b/docs/pre/arch/x86_64/memory/paging/page_entry.rst
deleted file mode 100644
index 8900b0e..0000000
--- a/docs/pre/arch/x86_64/memory/paging/page_entry.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Virtual Page Table Entry
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/paging/page_entry.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/paging/page_table.rst b/docs/pre/arch/x86_64/memory/paging/page_table.rst
deleted file mode 100644
index c5ab8c7..0000000
--- a/docs/pre/arch/x86_64/memory/paging/page_table.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Virtual Page Table
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/paging/page_table.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/paging/temporary_page.rst b/docs/pre/arch/x86_64/memory/paging/temporary_page.rst
deleted file mode 100644
index 0c63899..0000000
--- a/docs/pre/arch/x86_64/memory/paging/temporary_page.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Temporary Virtual Page Table
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/paging/temporary_page.hpp
-
diff --git a/docs/pre/arch/x86_64/memory/paging/virtual_page.rst b/docs/pre/arch/x86_64/memory/paging/virtual_page.rst
deleted file mode 100644
index dd42f47..0000000
--- a/docs/pre/arch/x86_64/memory/paging/virtual_page.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Virtual Page
-=======================
-
-.. doxygenfile:: arch/x86_64/include/arch/memory/paging/virtual_page.hpp
-