This commit is contained in:
Adrien Bourmault 2019-03-17 23:05:31 +01:00
parent fb5fc7ba6c
commit 5da35bcbe8
1 changed files with 50 additions and 35 deletions

View File

@ -22,37 +22,42 @@
# along with OS/K. If not, see <https://www.gnu.org/licenses/>. #
#=----------------------------------------------------------------------------=#
.
├── AUTHORS
├── boot
│   ├── loader
│   │   ├── cpu
│   │   │   ├── cpu.asm
│   │   │   └── cpuid.asm
│   │   ├── elf
│   │   │   └── elf.c
│   │   ├── fs
│   │   │   └── fat.asm
│   │   ├── io
│   │   │   ├── ata.asm
│   │   │   ├── lmmem.asm
│   │   │   ├── lmterm.asm
│   │   │   ├── rmmem.asm
│   │   │   └── rmterm.asm
│   │   └── loader.asm
│   ├── mbr
│   │   ├── mbr.asm
│   │   └── mbr.inc
│   └── folder.desc
│   ├── folder.desc
│   ├── grub
│   │   ├── create_disk.sh
│   │   ├── grub.cfg
│   │   ├── grub-install.sh
│   │   ├── mount.sh
│   │   ├── multiboot.pdf
│   │   └── umount.sh
│   └── loader
│   ├── cpu
│   │   ├── cpu32.inc
│   │   └── cpu.inc
│   ├── io
│   │   └── terminal.inc
│   ├── loader.asm
│   ├── mem
│   │   ├── management.inc
│   │   └── structures.inc
│   └── multiboot
│   ├── check.inc
│   └── header.inc
├── build
│   ├── idttool.py
│   ├── kernel.ld
│   └── preproc.h
│   ├── bin
│   │   ├── disk.img
│   │   └── kaleid
│   └─── kernel.ld
├── ChangeLog
├── COPYING
├── grub.log
├── kaleid
│   ├── crtlib
│   │   ├── arith.c
│   │   ├── atoi.c
│   │   ├── ctype.c
│   │   ├── itoa.c
│   │   ├── memory.c
│   │   ├── rand.c
@ -78,33 +83,43 @@
│   │   │   ├── locks.h
│   │   │   ├── malloc.h
│   │   │   └── prog.h
│   │   ├── kernel
│   │   │   ├── base.h
│   │   │   ├── sched.h
│   │   │   └── terminal.h
│   │   ├── kalbase.h
│   │   ├── kaleid.h
│   │   ├── kalext.h
│   │   └── kalkern.h
│   │   ├── kernel
│   │   │   ├── base.h
│   │   │   ├── cpu.h
│   │   │   ├── iomisc.h
│   │   │   ├── mm.h
│   │   │   ├── panic.h
│   │   │   ├── proc.h
│   │   │   ├── sched.h
│   │   │   └── term.h
│   │   └── multiboot
│   │   └── multiboot.h
│   └── kernel
│   ├── cpu
│   │   └── cpuid.c
│   ├── init
│   │   ├── init.c
│   │   └── table.c
│   ├── io
│   │   ├── ata.inc
│   │   ├── cursor.c
│   │   ├── term.c
│   │   └── vga.c
│   ├── ke
│   │   └── panic.c
│   ├── mm
│   └── proc
│   ├── Makefile
│   └── sched.c
├── AUTHORS
├── ChangeLog
├── COPYING
├── loader_disasm32.asm
├── loader_disasm64.asm
├── Makefile
├── Makefile.in
├── ProjectTree
├── qemu.log
└── Readme.md
20 directories, 61 files
28 directories, 99 files