When the kernel been loaded into the memory, can it still can use BIOS interrupts? Such as
mov AX,0E820h
int 15h
or something.
When the kernel been loaded into the memory, can it still can use BIOS interrupts? Such as
mov AX,0E820h
int 15h
or something.
A UEFI program (or an OS loaded from one) cannot use legacy interrupts; it has to use the UEFI API.
If a UEFI BIOS includes the compatibility support module (CSM), then it supports legacy interrupts when booting a legacy boot sector.
To obtain the e820 memory map, call the UEFI boot services function GetMemoryMap.
© 2022 - 2024 — McMap. All rights reserved.