Enable hardware layer initialization code

This commit is contained in:
2024-06-04 21:36:09 +02:00
parent 7b29897efb
commit 76e1fc6099
5 changed files with 59 additions and 0 deletions

34
xtoskrnl/hl/init.c Normal file
View File

@@ -0,0 +1,34 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/hl/init.c
* DESCRIPTION: Hardware layer initialization code
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#include <xtos.h>
/**
* Initializes the hardware layer subsystem
*
* @return This routine returns a status code.
*
* @since XT 1.0
*/
XTAPI
XTSTATUS
HlInitializeSystem(VOID)
{
XTSTATUS Status;
/* Initialize ACPI */
Status = HlpInitializeAcpi();
if(Status != STATUS_SUCCESS)
{
return Status;
}
/* Return success */
return STATUS_SUCCESS;
}