Files
SystemPaw3/paw/stos/head/arch/amd64/lapic.h
T
2026-06-26 19:56:41 +00:00

24 lines
409 B
C

/*
* Copyright (c) 2026, Chloe M.
* Provided under the BSD-3 clause.
*
* Description: Local APIC driver
* Author: Chloe M.
*/
#ifndef _MACHINE_LAPIC_H_
#define _MACHINE_LAPIC_H_ 1
#include <stdef.h>
#include <hal/kpcr.h>
/*
* Initialize the Local APIC unit for the current
* processor.
*
* @Kpcr: KPCR of current processor
*/
VOID MdLapicInit(KPCR *Kpcr);
#endif /* !_MACHINE_LAPIC_H_ */