From 6c91528fb2c13b2f56e1d7285fcb998d5766f0f2 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Fri, 25 Mar 2016 01:25:21 -0400 Subject: [PATCH] Doc comments --- src/Kernel.hh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Kernel.hh b/src/Kernel.hh index bb0eb45..9afed1e 100644 --- a/src/Kernel.hh +++ b/src/Kernel.hh @@ -18,13 +18,19 @@ namespace kernel { +/** Collection of useful tidbits for setting up the system. */ struct StartupInformation { + /** Starting address of the kernel. */ u32 kernelStart; + /** Ending address (the first address *after* the last) of the kernel. */ u32 kernelEnd; + /** Pointer to the multiboot information struct. */ multiboot::Information* multibootInformation; }; + +/** The kernel itself. */ struct Kernel { static Kernel& systemKernel();