Doc comments

This commit is contained in:
Eryn Wells 2016-03-25 01:25:21 -04:00
parent bcfba2c167
commit 6c91528fb2

View file

@ -18,13 +18,19 @@
namespace kernel { namespace kernel {
/** Collection of useful tidbits for setting up the system. */
struct StartupInformation struct StartupInformation
{ {
/** Starting address of the kernel. */
u32 kernelStart; u32 kernelStart;
/** Ending address (the first address *after* the last) of the kernel. */
u32 kernelEnd; u32 kernelEnd;
/** Pointer to the multiboot information struct. */
multiboot::Information* multibootInformation; multiboot::Information* multibootInformation;
}; };
/** The kernel itself. */
struct Kernel struct Kernel
{ {
static Kernel& systemKernel(); static Kernel& systemKernel();