Implement Gdt constructor
This commit is contained in:
parent
d7e31e9b99
commit
c6bdd600d7
2 changed files with 32 additions and 20 deletions
|
@ -3,11 +3,23 @@
|
|||
|
||||
|
||||
Gdt::Gdt(){
|
||||
//Init desc 1 (0 conventional)
|
||||
//Init desc 2 (code segment)
|
||||
//Init desc 3 (data segment)
|
||||
//Init desc 4 (stack segment)
|
||||
|
||||
//Init conventional segment
|
||||
this->initGdtDesc(0x0,0x0,0x0,0x0, &m_Descriptors[0]);
|
||||
|
||||
//Init code segment
|
||||
this->initGdtDesc(0x0,0xFFFFF,0x9A,0x0D, &m_Descriptors[1]);
|
||||
|
||||
//Init data segment
|
||||
this->initGdtDesc(0x0,0xFFFFF,0x92,0x0D, &m_Descriptors[2]);
|
||||
|
||||
//Init stack segment
|
||||
this->initGdtDesc(0x00B00000,0x00000500,0x96,0x0D, &m_Descriptors[3]);
|
||||
|
||||
|
||||
//Init GDT Pointer
|
||||
this->m_Pointer.size=4*sizeof(this->m_Descriptors);
|
||||
this->m_Pointer.segment=0x00007E00;
|
||||
|
||||
|
||||
}
|
||||
|
@ -27,7 +39,7 @@ void Gdt::initGdtDesc(u32 base, u32 limit, u8 access, u8 flags, gdtDescriptorStr
|
|||
}
|
||||
|
||||
void Gdt::loadGdt(){
|
||||
//Copy Gdt into memory
|
||||
//Copy Gdt into memory and init registers
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ struct gdtDescriptorStruct{
|
|||
u16 limit1;
|
||||
u16 base1;
|
||||
u8 base2;
|
||||
u8 access : 4;
|
||||
u8 access;
|
||||
u8 limit2 : 4;
|
||||
u8 flags : 4;
|
||||
u8 base3;
|
||||
|
@ -31,7 +31,7 @@ class Gdt{
|
|||
private:
|
||||
|
||||
//Data members
|
||||
gdtDescriptorStruct m_Descriptor[4];
|
||||
gdtDescriptorStruct m_Descriptors[4];
|
||||
gdtPointerStruct m_Pointer;
|
||||
|
||||
//Methods
|
||||
|
|
Loading…
Add table
Reference in a new issue