Files
SystemPaw3/paw/stos/arch/amd64/platform/board.c
T
2026-06-25 22:07:14 -05:00

17 lines
237 B
C

/*
* Copyright (c) 2026, Chloe M.
* Provided under the BSD-3 clause.
*
* Description: Board initialization
* Author: Chloe M.
*/
#include <hal/board.h>
#include <machine/hpet.h>
VOID
HalBoardInit(VOID)
{
MdHpetInit();
}