Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ The source code is available at: [coditva/Jazz](https://github.com/coditva/Jazz)
- [Serial ports I/O](serial_port)
- [GDT](gdt)
- [Multiboot Specification Compliance](multiboot)
- [Memory management](memory-management)
- [Physical memory](physical-memory)
- [Virtual memory](virtual-memory)

## License
[MIT](https://github.com/coditva/Jazz/blob/master/LICENSE)
Expand Down
6 changes: 6 additions & 0 deletions docs/memory-management.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Memory Management

Memory management is a multipart process with multiple layers:
- [Physical memory](physical-memory): manages allocation of physical memory (page frame alloc).
- [Virtual memory](virtual-memory): manages virtualization and protection of memory (paging).
- Memory allocation: allocates memory for processes (malloc, free).