2019-03-21 13:30:27 +01:00
|
|
|
#=----------------------------------------------------------------------------=#
|
|
|
|
# GNU GPL OS/K #
|
|
|
|
# #
|
|
|
|
# Desc: #
|
|
|
|
# #
|
|
|
|
# #
|
|
|
|
# Copyright © 2018-2019 The OS/K Team #
|
|
|
|
# #
|
|
|
|
# This file is part of OS/K. #
|
|
|
|
# #
|
|
|
|
# OS/K is free software: you can redistribute it and/or modify #
|
|
|
|
# it under the terms of the GNU General Public License as published by #
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or #
|
|
|
|
# any later version. #
|
|
|
|
# #
|
|
|
|
# OS/K is distributed in the hope that it will be useful, #
|
|
|
|
# but WITHOUT ANY WARRANTY# without even the implied warranty of #
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
|
|
|
# GNU General Public License for more details. #
|
|
|
|
# #
|
|
|
|
# You should have received a copy of the GNU General Public License #
|
|
|
|
# along with OS/K. If not, see <https://www.gnu.org/licenses/>. #
|
|
|
|
#=----------------------------------------------------------------------------=#
|
|
|
|
|
|
|
|
|
|
|
|
.
|
|
|
|
├── boot
|
|
|
|
│ ├── grub
|
|
|
|
│ │ ├── create_disk.sh
|
|
|
|
│ │ ├── grub.cfg
|
|
|
|
│ │ ├── grub-install.sh
|
|
|
|
│ │ ├── mount.sh
|
|
|
|
│ │ ├── multiboot.pdf
|
|
|
|
│ │ └── umount.sh
|
|
|
|
│ ├── loader
|
|
|
|
│ │ ├── cpu
|
|
|
|
│ │ │ ├── cpu32.inc
|
|
|
|
│ │ │ └── cpu.inc
|
|
|
|
│ │ ├── io
|
|
|
|
│ │ │ └── terminal.inc
|
|
|
|
│ │ ├── mem
|
|
|
|
│ │ │ ├── management.inc
|
|
|
|
│ │ │ └── structures.inc
|
|
|
|
│ │ ├── multiboot
|
|
|
|
│ │ │ ├── check.inc
|
|
|
|
│ │ │ └── header.inc
|
|
|
|
│ │ └── loader.asm
|
|
|
|
│ └── folder.desc
|
|
|
|
├── build
|
|
|
|
│ ├── bin
|
|
|
|
│ │ ├── disk.img
|
|
|
|
│ │ └── kaleid
|
|
|
|
│ ├── obj
|
|
|
|
│ │ ├── boot
|
|
|
|
│ │ │ ├── kaleid.x86_64
|
|
|
|
│ │ │ └── loader.o
|
|
|
|
│ │ └── kaleid
|
|
|
|
│ │ ├── kernel
|
2019-03-25 23:10:06 +01:00
|
|
|
│ │ │ ├── bprint.o
|
|
|
|
│ │ │ ├── bput.o
|
2019-03-24 23:08:12 +01:00
|
|
|
│ │ │ ├── buf.o
|
2019-03-21 13:30:27 +01:00
|
|
|
│ │ │ ├── cpuid.o
|
|
|
|
│ │ │ ├── cursor.o
|
2019-03-26 17:50:03 +01:00
|
|
|
│ │ │ ├── gdt.o
|
2019-03-21 13:30:27 +01:00
|
|
|
│ │ │ ├── heap.o
|
|
|
|
│ │ │ ├── init.o
|
2019-03-29 14:19:29 +01:00
|
|
|
│ │ │ ├── log.o
|
2019-03-21 13:30:27 +01:00
|
|
|
│ │ │ ├── malloc.o
|
|
|
|
│ │ │ ├── map.o
|
|
|
|
│ │ │ ├── panic.o
|
2019-03-25 23:10:06 +01:00
|
|
|
│ │ │ ├── sched.o
|
2019-03-21 13:30:27 +01:00
|
|
|
│ │ │ ├── table.o
|
|
|
|
│ │ │ └── vga.o
|
|
|
|
│ │ ├── argv.o
|
|
|
|
│ │ ├── atoi.o
|
|
|
|
│ │ ├── atol.o
|
|
|
|
│ │ ├── atoul.o
|
|
|
|
│ │ ├── atou.o
|
|
|
|
│ │ ├── ctype.o
|
|
|
|
│ │ ├── itoa.o
|
|
|
|
│ │ ├── ltoa.o
|
|
|
|
│ │ ├── mem.o
|
|
|
|
│ │ ├── prog.o
|
|
|
|
│ │ ├── rand.o
|
|
|
|
│ │ ├── sprintf.o
|
|
|
|
│ │ ├── status.o
|
|
|
|
│ │ ├── string.o
|
|
|
|
│ │ ├── strtol.o
|
|
|
|
│ │ ├── ultoa.o
|
|
|
|
│ │ └── utoa.o
|
2019-04-01 11:40:58 +02:00
|
|
|
│ ├── grub.log
|
2019-04-06 07:53:58 +02:00
|
|
|
│ ├── kernel.ld
|
|
|
|
│ └── qemu.log
|
|
|
|
├── include
|
|
|
|
│ ├── base
|
|
|
|
│ │ ├── assert.h
|
|
|
|
│ │ ├── bdefs.h
|
|
|
|
│ │ ├── crtlib.h
|
|
|
|
│ │ ├── errno.h
|
|
|
|
│ │ ├── limits.h
|
|
|
|
│ │ ├── masks.h
|
|
|
|
│ │ └── types.h
|
|
|
|
│ ├── extras
|
|
|
|
│ │ ├── argv.h
|
|
|
|
│ │ ├── buf.h
|
|
|
|
│ │ ├── list.h
|
|
|
|
│ │ ├── locks.h
|
|
|
|
│ │ ├── malloc.h
|
|
|
|
│ │ └── prog.h
|
|
|
|
│ ├── kernel
|
|
|
|
│ │ ├── base.h
|
|
|
|
│ │ ├── boot.h
|
|
|
|
│ │ ├── cpu.h
|
|
|
|
│ │ ├── heap.h
|
|
|
|
│ │ ├── iomisc.h
|
|
|
|
│ │ ├── mboot.h
|
|
|
|
│ │ ├── mm.h
|
|
|
|
│ │ ├── panic.h
|
|
|
|
│ │ ├── proc.h
|
|
|
|
│ │ └── sched.h
|
|
|
|
│ ├── kalbase.h
|
|
|
|
│ ├── kaleid.h
|
|
|
|
│ └── kalext.h
|
2019-03-21 13:30:27 +01:00
|
|
|
├── kaleid
|
|
|
|
│ ├── extras
|
|
|
|
│ │ ├── argv.c
|
|
|
|
│ │ └── prog.c
|
2019-04-06 07:53:58 +02:00
|
|
|
│ ├── kernel
|
|
|
|
│ │ ├── cpu
|
|
|
|
│ │ │ ├── cpuid.c
|
|
|
|
│ │ │ └── idt.c
|
|
|
|
│ │ ├── init
|
|
|
|
│ │ │ ├── init.c
|
|
|
|
│ │ │ └── table.c
|
|
|
|
│ │ ├── io
|
|
|
|
│ │ │ ├── ata.inc
|
|
|
|
│ │ │ ├── cursor.c
|
|
|
|
│ │ │ └── vga.c
|
|
|
|
│ │ ├── ke
|
|
|
|
│ │ │ ├── log.c
|
|
|
|
│ │ │ └── panic.c
|
|
|
|
│ │ ├── mm
|
|
|
|
│ │ │ ├── gdt.c
|
|
|
|
│ │ │ ├── heap.c
|
|
|
|
│ │ │ ├── malloc.c
|
|
|
|
│ │ │ └── map.c
|
|
|
|
│ │ └── ps
|
|
|
|
│ │ └── sched.c
|
|
|
|
│ ├── libbuf
|
|
|
|
│ │ ├── bprint.c
|
|
|
|
│ │ ├── bput.c
|
|
|
|
│ │ └── buf.c
|
|
|
|
│ └── libc
|
|
|
|
│ ├── atoi.c
|
|
|
|
│ ├── ctype.c
|
|
|
|
│ ├── itoa.c
|
|
|
|
│ ├── mem.c
|
|
|
|
│ ├── rand.c
|
|
|
|
│ ├── sprintf.c
|
|
|
|
│ ├── status.c
|
|
|
|
│ ├── string.c
|
|
|
|
│ └── strtol.c
|
2019-03-21 13:30:27 +01:00
|
|
|
├── AUTHORS
|
|
|
|
├── ChangeLog
|
|
|
|
├── COPYING
|
|
|
|
├── Makefile
|
|
|
|
├── ProjectTree
|
2019-04-06 07:53:58 +02:00
|
|
|
└── README.md
|
2019-03-21 13:30:27 +01:00
|
|
|
|
2019-04-01 11:40:58 +02:00
|
|
|
28 directories, 114 files
|