24 lines
324 B
C++
24 lines
324 B
C++
/* StartupInformation.cc
|
|
* vim: set tw=80:
|
|
* Eryn Wells <eryn@erynwells.me>
|
|
*/
|
|
/**
|
|
* Definition of the StartupInformation struct.
|
|
*/
|
|
|
|
#include "StartupInformation.hh"
|
|
|
|
namespace kernel {
|
|
|
|
/*
|
|
* Public
|
|
*/
|
|
|
|
u32
|
|
StartupInformation::kernelSize()
|
|
const
|
|
{
|
|
return kernelEnd - kernelStart;
|
|
}
|
|
|
|
} /* namespace kernel */
|