PiegOS/kernel/GDT/gdt.hpp

56 lines
807 B
C++
Raw Normal View History

2015-07-20 16:34:46 +04:00
#ifndef __GDT__
#define __GDT__
#include "../Types/types.hpp"
//Define GDT pointer
struct gdtPointerStruct{
u16 size;
u32 segment;
} __attribute__ ((packed));
//Define GDT descriptor
struct gdtDescriptorStruct{
u16 limit1;
u16 base1;
u8 base2;
2015-07-20 19:12:26 +04:00
u8 access : 4;
2015-07-20 16:34:46 +04:00
u8 limit2 : 4;
2015-07-20 19:12:26 +04:00
u8 flags : 4;
2015-07-20 16:34:46 +04:00
u8 base3;
} __attribute__ ((packed));
//Typedef :
typedef struct gdtPointerStruct gdtPointerStruct;
typedef struct gdtDescriptorStruct gdtDescriptorStruct;
2015-07-20 16:58:34 +04:00
//Gdt class
class Gdt{
private:
//Data members
gdtDescriptorStruct m_Descriptor[4];
gdtPointerStruct m_Pointer;
//Methods
2015-07-20 19:12:26 +04:00
void initGdtDesc(u32 base, u32 limit, u8 access, u8 flags, gdtDescriptorStruct *Descriptor);
2015-07-20 16:58:34 +04:00
public:
//Constructor
Gdt();
//Destructor
~Gdt();
//Methods
void loadGdt();
};
2015-07-20 16:34:46 +04:00
#endif