mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
Initialize the registers for the next call to Int386 in GetBiosMemoryMap.
svn path=/trunk/; revision=3797
This commit is contained in:
parent
dd6e3b8b31
commit
6dc09f22d2
1 changed files with 7 additions and 0 deletions
|
@ -202,6 +202,13 @@ U32 GetBiosMemoryMap(BIOS_MEMORY_MAP BiosMemoryMap[32])
|
|||
DbgPrint((DPRINT_MEMORY, "End Of System Memory Map!\n\n"));
|
||||
break;
|
||||
}
|
||||
// setup the register for the next call
|
||||
Regs.x.eax = 0x0000E820;
|
||||
Regs.x.edx = 0x534D4150; // ('SMAP')
|
||||
Regs.x.ebx = 0x00000001;
|
||||
Regs.x.ecx = sizeof(BIOS_MEMORY_MAP);
|
||||
Regs.w.es = BIOSCALLBUFSEGMENT;
|
||||
Regs.w.di = BIOSCALLBUFOFFSET;
|
||||
}
|
||||
|
||||
return MapCount;
|
||||
|
|
Loading…
Reference in a new issue