Remove pageSize from StartupInformation -- it is assumed
This commit is contained in:
parent
109ea7ce2e
commit
051dc27006
2 changed files with 0 additions and 9 deletions
|
@ -39,7 +39,6 @@ kmain(multiboot::Information *information,
|
||||||
startupInformation.kernelStart = u32(&kernelStart);
|
startupInformation.kernelStart = u32(&kernelStart);
|
||||||
startupInformation.kernelEnd = u32(&kernelEnd);
|
startupInformation.kernelEnd = u32(&kernelEnd);
|
||||||
// TODO: Define this somewhere else.
|
// TODO: Define this somewhere else.
|
||||||
startupInformation.pageSize = 4096;
|
|
||||||
startupInformation.multibootMagic = magic;
|
startupInformation.multibootMagic = magic;
|
||||||
startupInformation.multibootInformation = information;
|
startupInformation.multibootInformation = information;
|
||||||
|
|
||||||
|
|
|
@ -23,14 +23,6 @@ struct StartupInformation
|
||||||
/** Ending address (the first valid address *after* the last) of the kernel. 4K aligned. */
|
/** Ending address (the first valid address *after* the last) of the kernel. 4K aligned. */
|
||||||
u32 kernelEnd;
|
u32 kernelEnd;
|
||||||
|
|
||||||
/**
|
|
||||||
* @defgroup Memory
|
|
||||||
* @{
|
|
||||||
*/
|
|
||||||
/** System page size in bytes. */
|
|
||||||
u32 pageSize;
|
|
||||||
/** @} */
|
|
||||||
|
|
||||||
/** Multiboot's magic value. This should be verified. */
|
/** Multiboot's magic value. This should be verified. */
|
||||||
u32 multibootMagic;
|
u32 multibootMagic;
|
||||||
/** Pointer to the multiboot information struct. */
|
/** Pointer to the multiboot information struct. */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue