Implemented GDT & IDT

This commit is contained in:
Alex
2022-10-10 09:00:32 +03:00
parent 1446cc4682
commit f746110fbe
10 changed files with 1190 additions and 153 deletions

11
include/interrupts.hpp Normal file
View File

@ -0,0 +1,11 @@
#ifndef __FENNIX_KERNEL_INTERRUPTS_H__
#define __FENNIX_KERNEL_INTERRUPTS_H__
#include <types.h>
namespace Interrupts
{
void Initialize();
}
#endif // !__FENNIX_KERNEL_INTERRUPTS_H__