Crashdump yay
This commit is contained in:
parent
f07fdafd52
commit
718ea275c5
24
ProjectTree
24
ProjectTree
|
@ -96,7 +96,9 @@
|
||||||
│ │ │ │ ├── malloc.d
|
│ │ │ │ ├── malloc.d
|
||||||
│ │ │ │ ├── malloc.o
|
│ │ │ │ ├── malloc.o
|
||||||
│ │ │ │ ├── map.d
|
│ │ │ │ ├── map.d
|
||||||
│ │ │ │ └── map.o
|
│ │ │ │ ├── map.o
|
||||||
|
│ │ │ │ ├── paging.d
|
||||||
|
│ │ │ │ └── paging.o
|
||||||
│ │ │ ├── po
|
│ │ │ ├── po
|
||||||
│ │ │ │ ├── shtdwn.d
|
│ │ │ │ ├── shtdwn.d
|
||||||
│ │ │ │ └── shtdwn.o
|
│ │ │ │ └── shtdwn.o
|
||||||
|
@ -104,6 +106,8 @@
|
||||||
│ │ │ │ ├── sched.d
|
│ │ │ │ ├── sched.d
|
||||||
│ │ │ │ └── sched.o
|
│ │ │ │ └── sched.o
|
||||||
│ │ │ └── sh
|
│ │ │ └── sh
|
||||||
|
│ │ │ ├── musage.d
|
||||||
|
│ │ │ ├── musage.o
|
||||||
│ │ │ ├── shcmds.d
|
│ │ │ ├── shcmds.d
|
||||||
│ │ │ ├── shcmds.o
|
│ │ │ ├── shcmds.o
|
||||||
│ │ │ ├── shell.d
|
│ │ │ ├── shell.d
|
||||||
|
@ -149,7 +153,10 @@
|
||||||
│ │ ├── strtol.d
|
│ │ ├── strtol.d
|
||||||
│ │ └── strtol.o
|
│ │ └── strtol.o
|
||||||
│ ├── grub.log
|
│ ├── grub.log
|
||||||
│ └── kernel.ld
|
│ ├── kaleid32_disasm.asm
|
||||||
|
│ ├── kaleid64_disasm.asm
|
||||||
|
│ ├── kernel.ld
|
||||||
|
│ └── qemu.log
|
||||||
├── include
|
├── include
|
||||||
│ ├── ex
|
│ ├── ex
|
||||||
│ │ ├── argv.h
|
│ │ ├── argv.h
|
||||||
|
@ -161,7 +168,8 @@
|
||||||
│ ├── io
|
│ ├── io
|
||||||
│ │ ├── cursor.h
|
│ │ ├── cursor.h
|
||||||
│ │ ├── keyb.h
|
│ │ ├── keyb.h
|
||||||
│ │ └── spkr.h
|
│ │ ├── spkr.h
|
||||||
|
│ │ └── vga.h
|
||||||
│ ├── ke
|
│ ├── ke
|
||||||
│ │ ├── cpuid.h
|
│ │ ├── cpuid.h
|
||||||
│ │ ├── idt.h
|
│ │ ├── idt.h
|
||||||
|
@ -180,7 +188,8 @@
|
||||||
│ ├── asm.h
|
│ ├── asm.h
|
||||||
│ ├── errno.h
|
│ ├── errno.h
|
||||||
│ ├── kernel.h
|
│ ├── kernel.h
|
||||||
│ └── libc.h
|
│ ├── libc.h
|
||||||
|
│ └── vers.h
|
||||||
├── kaleid
|
├── kaleid
|
||||||
│ ├── extras
|
│ ├── extras
|
||||||
│ │ └── argv.c
|
│ │ └── argv.c
|
||||||
|
@ -211,12 +220,15 @@
|
||||||
│ │ │ ├── gdt.c
|
│ │ │ ├── gdt.c
|
||||||
│ │ │ ├── heap.c
|
│ │ │ ├── heap.c
|
||||||
│ │ │ ├── malloc.c
|
│ │ │ ├── malloc.c
|
||||||
│ │ │ └── map.c
|
│ │ │ ├── map.c
|
||||||
|
│ │ │ ├── paging.asm
|
||||||
|
│ │ │ └── paging.c
|
||||||
│ │ ├── po
|
│ │ ├── po
|
||||||
│ │ │ └── shtdwn.c
|
│ │ │ └── shtdwn.c
|
||||||
│ │ ├── ps
|
│ │ ├── ps
|
||||||
│ │ │ └── sched.c
|
│ │ │ └── sched.c
|
||||||
│ │ └── sh
|
│ │ └── sh
|
||||||
|
│ │ ├── musage.c
|
||||||
│ │ ├── shcmds.c
|
│ │ ├── shcmds.c
|
||||||
│ │ ├── shell.c
|
│ │ ├── shell.c
|
||||||
│ │ └── shell.h
|
│ │ └── shell.h
|
||||||
|
@ -249,4 +261,4 @@
|
||||||
├── ProjectTree
|
├── ProjectTree
|
||||||
└── README.md
|
└── README.md
|
||||||
|
|
||||||
43 directories, 181 files
|
43 directories, 193 files
|
||||||
|
|
Loading…
Reference in New Issue