mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-28 15:34:33 +00:00
12 lines
190 B
C++
12 lines
190 B
C++
#ifndef __FENNIX_KERNEL_INTERRUPTS_H__
|
|
#define __FENNIX_KERNEL_INTERRUPTS_H__
|
|
|
|
#include <types.h>
|
|
|
|
namespace Interrupts
|
|
{
|
|
void Initialize();
|
|
}
|
|
|
|
#endif // !__FENNIX_KERNEL_INTERRUPTS_H__
|