stos/amd64+hal: Add hpet init groundwork

Signed-off-by: Chloe M. <chloe@mensia.org>
This commit is contained in:
Chloe M.
2026-06-25 22:07:14 -05:00
parent 45dea1edb9
commit 686de4059f
5 changed files with 93 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
/*
* Copyright (c) 2026, Chloe M.
* Provided under the BSD-3 clause.
*
* Description: HPET driver
* Author: Chloe M.
*/
#ifndef _MACHINE_HPET_H_
#define _MACHINE_HPET_H_ 1
#include <stdef.h>
/*
* Initialize the HPET timer
*/
VOID MdHpetInit(VOID);
#endif /* !_MACHINE_HPET_H_ */