mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-29 07:47:59 +00:00
14 lines
240 B
C++
14 lines
240 B
C++
#ifndef __FENNIX_KERNEL_INTERRUPTS_H__
|
|
#define __FENNIX_KERNEL_INTERRUPTS_H__
|
|
|
|
#include <types.h>
|
|
|
|
namespace Interrupts
|
|
{
|
|
extern void *apic;
|
|
void Initialize(int Core);
|
|
void Enable();
|
|
}
|
|
|
|
#endif // !__FENNIX_KERNEL_INTERRUPTS_H__
|