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