Update ProjectTree

This commit is contained in:
Adrien Bourmault 2019-04-24 23:10:19 +02:00
parent ac0b194f52
commit c1413a7c48
2 changed files with 20 additions and 7 deletions

View File

@ -69,6 +69,8 @@
│   │   │   │   └── table.o │   │   │   │   └── table.o
│   │   │   ├── io │   │   │   ├── io
│   │   │   │   ├── cursor.o │   │   │   │   ├── cursor.o
│   │   │   │   ├── keyb.o
│   │   │   │   ├── rtc.o
│   │   │   │   └── vga.o │   │   │   │   └── vga.o
│   │   │   ├── ke │   │   │   ├── ke
│   │   │   │   ├── log.o │   │   │   │   ├── log.o
@ -82,7 +84,8 @@
│   │   │   └── sched.o │   │   │   └── sched.o
│   │   ├── libbuf │   │   ├── libbuf
│   │   │   ├── bprint.o │   │   │   ├── bprint.o
│   │   │   ├── bput.o │   │   │   ├── bputc.o
│   │   │   ├── bscroll.o
│   │   │   └── buf.o │   │   │   └── buf.o
│   │   └── libc │   │   └── libc
│   │   ├── atoi.o │   │   ├── atoi.o
@ -95,6 +98,8 @@
│   │   ├── string.o │   │   ├── string.o
│   │   └── strtol.o │   │   └── strtol.o
│   ├── grub.log │   ├── grub.log
│   ├── kaleid32_disasm.asm
│   ├── kaleid64_disasm.asm
│   └── kernel.ld │   └── kernel.ld
├── include ├── include
│   ├── base │   ├── base
@ -115,14 +120,16 @@
│   ├── kernel │   ├── kernel
│   │   ├── base.h │   │   ├── base.h
│   │   ├── boot.h │   │   ├── boot.h
│   │   ├── cpu.h │   │   ├── cpuid.h
│   │   ├── cursor.h │   │   ├── cursor.h
│   │   ├── heap.h │   │   ├── heap.h
│   │   ├── idt.h
│   │   ├── iomisc.h │   │   ├── iomisc.h
│   │   ├── mboot.h │   │   ├── mboot.h
│   │   ├── mm.h │   │   ├── mm.h
│   │   ├── proc.h │   │   ├── proc.h
│   │   └── sched.h │   │   ├── sched.h
│   │   └── time.h
│   ├── kalbase.h │   ├── kalbase.h
│   ├── kaleid.h │   ├── kaleid.h
│   └── kalext.h │   └── kalext.h
@ -132,7 +139,6 @@
│   │   └── prog.c │   │   └── prog.c
│   ├── kernel │   ├── kernel
│   │   ├── cpu │   │   ├── cpu
│   │   │   ├── cpu.asm
│   │   │   ├── cpuid.c │   │   │   ├── cpuid.c
│   │   │   ├── idt.c │   │   │   ├── idt.c
│   │   │   ├── isr.asm │   │   │   ├── isr.asm
@ -145,6 +151,10 @@
│   │   ├── io │   │   ├── io
│   │   │   ├── ata.inc │   │   │   ├── ata.inc
│   │   │   ├── cursor.c │   │   │   ├── cursor.c
│   │   │   ├── keyb.asm
│   │   │   ├── keyb.c
│   │   │   ├── rtc.asm
│   │   │   ├── rtc.c
│   │   │   └── vga.c │   │   │   └── vga.c
│   │   ├── ke │   │   ├── ke
│   │   │   ├── log.c │   │   │   ├── log.c
@ -158,7 +168,8 @@
│   │   └── sched.c │   │   └── sched.c
│   ├── libbuf │   ├── libbuf
│   │   ├── bprint.c │   │   ├── bprint.c
│   │   ├── bput.c │   │   ├── bputc.c
│   │   ├── bscroll.c
│   │   └── buf.c │   │   └── buf.c
│   └── libc │   └── libc
│   ├── atoi.c │   ├── atoi.c
@ -173,8 +184,10 @@
├── AUTHORS ├── AUTHORS
├── ChangeLog ├── ChangeLog
├── COPYING ├── COPYING
├── kaleid32_disasm.asm
├── kaleid64_disasm.asm
├── Makefile ├── Makefile
├── ProjectTree ├── ProjectTree
└── README.md └── README.md
37 directories, 115 files 37 directories, 128 files

View File

@ -50,7 +50,7 @@ void MmInitGdt(void)
gdtPtr.limit = (sizeof(GdtEntry_t) * 5) - 1; gdtPtr.limit = (sizeof(GdtEntry_t) * 5) - 1;
gdtPtr.base = (uint)(ullong)&gdtEntries; gdtPtr.base = (uint)(ullong)&gdtEntries;
SetGdtEntry(0,0,0,0,0); //SetGdtEntry(0,0,0,0,0);
/* XXX set TSS register */ /* XXX set TSS register */