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