From 718ea275c55277b7a0b784d0811af3e0ef1adb97 Mon Sep 17 00:00:00 2001 From: Adrien Bourmault Date: Sun, 19 May 2019 00:43:41 +0200 Subject: [PATCH] Crashdump yay --- ProjectTree | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/ProjectTree b/ProjectTree index 2926a0b..1087662 100644 --- a/ProjectTree +++ b/ProjectTree @@ -96,7 +96,9 @@ │   │   │   │   ├── malloc.d │   │   │   │   ├── malloc.o │   │   │   │   ├── map.d -│   │   │   │   └── map.o +│   │   │   │   ├── map.o +│   │   │   │   ├── paging.d +│   │   │   │   └── paging.o │   │   │   ├── po │   │   │   │   ├── shtdwn.d │   │   │   │   └── shtdwn.o @@ -104,6 +106,8 @@ │   │   │   │   ├── sched.d │   │   │   │   └── sched.o │   │   │   └── sh +│   │   │   ├── musage.d +│   │   │   ├── musage.o │   │   │   ├── shcmds.d │   │   │   ├── shcmds.o │   │   │   ├── shell.d @@ -149,7 +153,10 @@ │   │   ├── strtol.d │   │   └── strtol.o │   ├── grub.log -│   └── kernel.ld +│   ├── kaleid32_disasm.asm +│   ├── kaleid64_disasm.asm +│   ├── kernel.ld +│   └── qemu.log ├── include │   ├── ex │   │   ├── argv.h @@ -161,7 +168,8 @@ │   ├── io │   │   ├── cursor.h │   │   ├── keyb.h -│   │   └── spkr.h +│   │   ├── spkr.h +│   │   └── vga.h │   ├── ke │   │   ├── cpuid.h │   │   ├── idt.h @@ -180,7 +188,8 @@ │   ├── asm.h │   ├── errno.h │   ├── kernel.h -│   └── libc.h +│   ├── libc.h +│   └── vers.h ├── kaleid │   ├── extras │   │   └── argv.c @@ -211,12 +220,15 @@ │   │   │   ├── gdt.c │   │   │   ├── heap.c │   │   │   ├── malloc.c -│   │   │   └── map.c +│   │   │   ├── map.c +│   │   │   ├── paging.asm +│   │   │   └── paging.c │   │   ├── po │   │   │   └── shtdwn.c │   │   ├── ps │   │   │   └── sched.c │   │   └── sh +│   │   ├── musage.c │   │   ├── shcmds.c │   │   ├── shell.c │   │   └── shell.h @@ -249,4 +261,4 @@ ├── ProjectTree └── README.md -43 directories, 181 files +43 directories, 193 files