mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
21 lines
425 B
C
21 lines
425 B
C
|
/*
|
||
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
||
|
* Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <Kernel/Memory/MappedROM.h>
|
||
|
#include <Kernel/Memory/Region.h>
|
||
|
#include <Kernel/PhysicalAddress.h>
|
||
|
#include <Kernel/VirtualAddress.h>
|
||
|
|
||
|
namespace Kernel {
|
||
|
|
||
|
ErrorOr<Memory::MappedROM> map_bios();
|
||
|
ErrorOr<Memory::MappedROM> map_ebda();
|
||
|
|
||
|
}
|