1
0
mirror of https://gitlab.os-k.eu/os-k-team/os-k.git synced 2023-08-25 14:03:10 +02:00

Update ProjectTree

This commit is contained in:
Adrien Bourmault 2019-05-08 21:47:26 +02:00
parent b91f21fafb
commit 7f1f1df688

View File

@ -75,9 +75,7 @@
│   │   │   │   └── vga.o
│   │   │   ├── ke
│   │   │   │   ├── log.o
│   │   │   │   ├── panic.o
│   │   │   │   ├── shcmds.o
│   │   │   │   └── shell.o
│   │   │   │   └── panic.o
│   │   │   ├── mm
│   │   │   │   ├── gdt.o
│   │   │   │   ├── heap.o
@ -85,8 +83,11 @@
│   │   │   │   └── map.o
│   │   │   ├── po
│   │   │   │   └── shtdwn.o
│   │   │   └── ps
│   │   │   └── sched.o
│   │   │   ├── ps
│   │   │   │   └── sched.o
│   │   │   └── sh
│   │   │   ├── shcmds.o
│   │   │   └── shell.o
│   │   ├── libbuf
│   │   │   ├── bclose.o
│   │   │   ├── bflush.o
@ -110,6 +111,8 @@
│   │   ├── string.o
│   │   └── strtol.o
│   ├── grub.log
│   ├── kaleid32_disasm.asm
│   ├── kaleid64_disasm.asm
│   └── kernel.ld
├── include
│   ├── base
@ -152,6 +155,7 @@
│   │   └── prog.c
│   ├── kernel
│   │   ├── cpu
│   │   │   ├── cpuf.asm
│   │   │   ├── cpuid.c
│   │   │   ├── idt.c
│   │   │   ├── isr.asm
@ -171,10 +175,7 @@
│   │   │   └── vga.c
│   │   ├── ke
│   │   │   ├── log.c
│   │   │   ├── panic.c
│   │   │   ├── shcmds.c
│   │   │   ├── shell.c
│   │   │   └── shell.h
│   │   │   └── panic.c
│   │   ├── mm
│   │   │   ├── gdt.c
│   │   │   ├── heap.c
@ -182,8 +183,12 @@
│   │   │   └── map.c
│   │   ├── po
│   │   │   └── shtdwn.c
│   │   └── ps
│   │   └── sched.c
│   │   ├── ps
│   │   │   └── sched.c
│   │   └── sh
│   │   ├── shcmds.c
│   │   ├── shell.c
│   │   └── shell.h
│   ├── libbuf
│   │   ├── bclose.c
│   │   ├── bflush.c
@ -209,10 +214,8 @@
├── AUTHORS
├── ChangeLog
├── COPYING
├── kaleid32_disasm.asm
├── kaleid64_disasm.asm
├── Makefile
├── ProjectTree
└── README.md
39 directories, 151 files
41 directories, 152 files