mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-28 15:34:33 +00:00
Stub files for other architectures
This commit is contained in:
parent
4896891ed9
commit
11d77f4b2b
11
arch/i686/cpu/gdt.hpp
Normal file
11
arch/i686/cpu/gdt.hpp
Normal file
@ -0,0 +1,11 @@
|
||||
#ifndef __FENNIX_KERNEL_GDT_H__
|
||||
#define __FENNIX_KERNEL_GDT_H__
|
||||
|
||||
#include <types.h>
|
||||
|
||||
namespace GlobalDescriptorTable
|
||||
{
|
||||
void Init(int Core);
|
||||
}
|
||||
|
||||
#endif // !__FENNIX_KERNEL_GDT_H__
|
11
arch/i686/cpu/idt.hpp
Normal file
11
arch/i686/cpu/idt.hpp
Normal file
@ -0,0 +1,11 @@
|
||||
#ifndef __FENNIX_KERNEL_IDT_H__
|
||||
#define __FENNIX_KERNEL_IDT_H__
|
||||
|
||||
#include <types.h>
|
||||
|
||||
namespace InterruptDescriptorTable
|
||||
{
|
||||
void Init(int Core);
|
||||
}
|
||||
|
||||
#endif // !__FENNIX_KERNEL_IDT_H__
|
@ -7,8 +7,6 @@
|
||||
#include "../arch/i686/cpu/gdt.hpp"
|
||||
#include "../arch/i686/cpu/idt.hpp"
|
||||
#elif defined(__aarch64__)
|
||||
#include "../arch/aarch64/cpu/gdt.hpp"
|
||||
#include "../arch/aarch64/cpu/idt.hpp"
|
||||
#endif
|
||||
|
||||
namespace Interrupts
|
||||
|
Loading…
x
Reference in New Issue
Block a user