Correct some mistake
This commit is contained in:
parent
dd1226fb1f
commit
7173bb91ce
7 changed files with 22 additions and 8 deletions
|
@ -1,5 +1,6 @@
|
|||
#include "gdt.hpp"
|
||||
#include "../Helpers/types.hpp"
|
||||
#include "../Helpers/memory.hpp"
|
||||
|
||||
|
||||
Gdt::Gdt(){
|
||||
|
@ -39,7 +40,14 @@ void Gdt::initGdtDesc(u32 base, u32 limit, u8 access, u8 flags, gdtDescriptorStr
|
|||
}
|
||||
|
||||
void Gdt::loadGdt(){
|
||||
int *gdtAdress=(int *)&m_Pointer;
|
||||
//Copy Gdt into memory and init registers
|
||||
memcpy((u32)m_Descriptors, (u32)m_Pointer.segment, (u32)m_Pointer.size);
|
||||
|
||||
__asm__("lgdtl (%0);"
|
||||
:
|
||||
:"r"(gdtAdress)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
|
|
Binary file not shown.
|
@ -1,12 +1,12 @@
|
|||
#include "./memory.hpp"
|
||||
#include "./types.hpp"
|
||||
|
||||
int memcpy(u8 source, u8 dest, u32 size){
|
||||
int memcpy(u32 source, u32 dest, u32 size){
|
||||
|
||||
u8 *sourceTmp=(u8 *)source;
|
||||
u8 *destTmp=(u8 *)dest;
|
||||
u32 *sourceTmp=(u32 *)source;
|
||||
u32 *destTmp=(u32 *)dest;
|
||||
|
||||
int progress=0;
|
||||
u32 progress=0;
|
||||
|
||||
while(progress != size){
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include "./types.hpp"
|
||||
|
||||
int memcpy(u8 source, u8 dest, u32 size);
|
||||
int memcpy(u32 source, u32 dest, u32 size);
|
||||
|
||||
|
||||
#endif
|
||||
|
|
|
@ -7,7 +7,7 @@ all:$(EXEC)
|
|||
|
||||
#----- Kernel -----
|
||||
$(EXEC):entry.o main.o GDT/gdt.o Helpers/helpers.o
|
||||
ld -m elf_i386 --entry=_start -Ttext=0x100000 -o $@ $^
|
||||
$(CXX) --entry=_start -Ttext=0x100000 -o $@ $^
|
||||
#-----------------
|
||||
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
extern main
|
||||
|
||||
;Define entry point as global for linking
|
||||
global _start
|
||||
global _kernelEntry
|
||||
|
||||
;Define kernel entry point
|
||||
_start:
|
||||
_kernelEntry:
|
||||
jmp begin ;Go to begin (for skip Multiboot Specification Header)
|
||||
|
||||
|
||||
|
|
|
@ -4,6 +4,12 @@
|
|||
|
||||
int main(){
|
||||
|
||||
//Create Gdt instance
|
||||
Gdt gdt;
|
||||
|
||||
//Load Gdt into memory
|
||||
gdt.loadGdt();
|
||||
|
||||
while(1);
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue