stuff
This commit is contained in:
parent
a2cf863cd0
commit
9f4c8196ce
|
@ -33,8 +33,8 @@
|
||||||
//
|
//
|
||||||
void InitBootInfo(multiboot_info_t *mbi)
|
void InitBootInfo(multiboot_info_t *mbi)
|
||||||
{
|
{
|
||||||
KalAssert(mbi);
|
// We need the multiboot structure
|
||||||
|
KalAlwaysAssert(mbi);
|
||||||
extern uint MB_header;
|
extern uint MB_header;
|
||||||
|
|
||||||
//Retrieves the bootloader informations
|
//Retrieves the bootloader informations
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
int cpuCount = 1;
|
int cpuCount = 1;
|
||||||
Processor_t cpuTable[NCPUS] = {0};
|
Processor_t cpuTable[NCPUS] = {0};
|
||||||
|
|
||||||
BootInfo_t bootTab = {0}
|
BootInfo_t bootTab = {0};
|
||||||
Terminal_t *StdOut = 0, *StdDbg = 0;
|
Terminal_t *StdOut = 0, *StdDbg = 0;
|
||||||
volatile char *PanicStr = 0;
|
volatile char *PanicStr = 0;
|
||||||
|
|
||||||
|
|
|
@ -27,8 +27,8 @@
|
||||||
|
|
||||||
error_t InitMemoryMap(void)
|
error_t InitMemoryMap(void)
|
||||||
{
|
{
|
||||||
///uint MapIsValid = (GetBootInfo(btldr).grubFlags & MULTIBOOT_INFO_MEM_MAP = MULTIBOOT_INFO_MEM_MAP ? 1 : 0);
|
uint mapIsValid = (GetBootInfo(btldr).grubFlags & MULTIBOOT_INFO_MEM_MAP) == MULTIBOOT_INFO_MEM_MAP;
|
||||||
KalAlwaysAssert(MapIsValid);
|
KalAlwaysAssert(0);
|
||||||
return EOK;
|
return EOK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue