aboutsummaryrefslogtreecommitdiff
path: root/docs/boot.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/boot.md')
-rw-r--r--docs/boot.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/boot.md b/docs/boot.md
index 2131d93..f79f475 100644
--- a/docs/boot.md
+++ b/docs/boot.md
@@ -1,11 +1,11 @@
I need to figure out how to write MarkDown files, but the general procedure of a
boot is that we
-1) Assume we start of in real memory mode, i.e. no MMU active.
+1. Assume we start of in real memory mode, i.e. no MMU active.
-2) arch/whatever/init/init.c kickstarts us into virtual memory with a direct
-mapping, with offset VM_DMAP aliasing to physical address 0.
+2. arch/whatever/init/init.c kickstarts us into virtual memory with a direct
+mapping, with offset `VM_DMAP` aliasing to physical address 0.
-3) The kernel proper is moved to its correct location in this direct mapping.
+3. The kernel proper is moved to its correct location in this direct mapping.
-4) The kernel proper is jumped to, after which the kernel does whatever.
+4. The kernel proper is jumped to, after which the kernel does whatever.