mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-27 15:04:31 +00:00
12 lines
185 B
C++
12 lines
185 B
C++
#ifndef __FENNIX_KERNEL_IDT_H__
|
|
#define __FENNIX_KERNEL_IDT_H__
|
|
|
|
#include <types.h>
|
|
|
|
namespace InterruptDescriptorTable
|
|
{
|
|
void Init(int Core);
|
|
}
|
|
|
|
#endif // !__FENNIX_KERNEL_IDT_H__
|