summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlmuHS <almuhs@github.com>2019-06-15 21:33:05 +0200
committerAlmuHS <almuhs@github.com>2019-06-15 21:33:05 +0200
commita56386e880d82fcda6b8d770f5f0ad057a7ad00d (patch)
tree94e865a09ed13ff1b6d221d3613f2f1690834f01
parentd3e75343e96542a7ff04796c6473c0aea303f772 (diff)
docs: linked slave_main() function
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index c7cce538..ee111fd1 100644
--- a/README.md
+++ b/README.md
@@ -298,7 +298,7 @@ To enable paging, we need to initialize CR0, CR3 and CR4 registers. as similar f
This code, translated to assembly, has been added to [`cpuboot.S`](https://github.com/AlmuHS/GNUMach_SMP/blob/wip/i386/i386/cpuboot.S) assembly routine.
-Once paging will be enabled, each cpu will can to read its own Local APIC, using the `*lapic` pointer. It will also allow to execute `cpu_number()` function, which is necessary to execute the `slave_main()` function to add the cpu to the kernel.
+Once paging will be enabled, each cpu will can to read its own Local APIC, using the `*lapic` pointer. It will also allow to execute `cpu_number()` function, which is necessary to execute the [`slave_main()`](https://github.com/AlmuHS/GNUMach_SMP/blob/eb8b0bbf6299a0c19fca12ab71b810447f0d47f5/kern/startup.c#L282) function to add the cpu to the kernel.
## Gratitude