Add some source code for GDT and resources
This commit is contained in:
parent
a9aec79de3
commit
78f219c0ec
5 changed files with 37 additions and 1 deletions
22
kernel/GDT/gdt.h
Normal file
22
kernel/GDT/gdt.h
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
#ifndef __GDT__
|
||||||
|
#define __GDT__
|
||||||
|
|
||||||
|
#include "../Types/types.h"
|
||||||
|
|
||||||
|
struct gdtPointer{
|
||||||
|
u16 size;
|
||||||
|
u32 segment;
|
||||||
|
} __attribute__ ((packed));
|
||||||
|
|
||||||
|
struct gdtDescriptor{
|
||||||
|
u16 limit1;
|
||||||
|
u16 base1;
|
||||||
|
u8 base2;
|
||||||
|
u8 type : 4;
|
||||||
|
u8 param1 : 4;
|
||||||
|
u8 limit2 : 4;
|
||||||
|
u8 param2 : 4;
|
||||||
|
u8 base3;
|
||||||
|
} __attribute__ ((packed));
|
||||||
|
|
||||||
|
#endif
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
kernel.bin:entry.o main.o
|
kernel.bin:entry.o main.o
|
||||||
ld -m elf_i386 --entry=_start -Ttext=0x1000 -o $@ $^
|
ld -m elf_i386 --entry=_start -Ttext=0x100000 -o $@ $^
|
||||||
|
|
||||||
entry.o:entry.asm
|
entry.o:entry.asm
|
||||||
nasm -f elf $^
|
nasm -f elf $^
|
||||||
|
|
14
kernel/Types/types.h
Normal file
14
kernel/Types/types.h
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
#ifndef __types__
|
||||||
|
#define __types__
|
||||||
|
|
||||||
|
//Byte :
|
||||||
|
typedef unsigned char u8;
|
||||||
|
|
||||||
|
//Word :
|
||||||
|
typedef unsigned short u16;
|
||||||
|
|
||||||
|
//Double Word :
|
||||||
|
typedef unsigned long int u32;
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
BIN
resources/RAM_Organisation.jpg
Normal file
BIN
resources/RAM_Organisation.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 253 KiB |
BIN
resources/RAM_Organisation.xcf
Normal file
BIN
resources/RAM_Organisation.xcf
Normal file
Binary file not shown.
Loading…
Add table
Reference in a new issue