os-k/ProjectTree

171 lines
6.6 KiB
Plaintext
Raw Normal View History

2019-02-06 15:34:39 +01:00
#=----------------------------------------------------------------------------=#
# GNU GPL OS/K #
2019-01-14 14:31:49 +01:00
# #
2019-03-18 13:45:26 +01:00
# Desc: #
2019-01-14 14:31:49 +01:00
# #
2019-02-06 15:34:39 +01:00
# #
# 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/>. #
#=----------------------------------------------------------------------------=#
2019-03-18 13:45:26 +01:00
2019-02-06 15:34:39 +01:00
.
2019-03-17 23:05:31 +01:00
├── AUTHORS
2019-02-06 15:34:39 +01:00
├── boot
2019-03-17 23:05:31 +01:00
│   ├── 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
2019-02-06 15:34:39 +01:00
├── build
2019-03-17 23:05:31 +01:00
│   ├── bin
│   │   ├── disk.img
│   │   └── kaleid
2019-03-18 13:45:26 +01:00
│   ├── kernel.ld
│   └── obj
│   ├── boot
│   │   ├── kaleid.x86_64
│   │   └── loader.o
│   └── kaleid
│   ├── argv.o
│   ├── atoi.o
│   ├── atol.o
│   ├── atoul.o
│   ├── atou.o
│   ├── ctype.o
│   ├── itoa.o
│   ├── kernel
│   │   ├── cpuid.o
│   │   ├── cursor.o
2019-03-18 17:25:44 +01:00
│   │   ├── heap.o
2019-03-19 12:24:27 +01:00
│   │   ├── init
│   │   │   ├── init.o
│   │   │   └── table.o
2019-03-18 13:45:26 +01:00
│   │   ├── init.o
2019-03-19 12:24:27 +01:00
│   │   ├── io
│   │   │   ├── cursor.o
│   │   │   ├── term.o
│   │   │   └── vga.o
│   │   ├── ke
│   │   │   └── panic.o
2019-03-18 17:25:44 +01:00
│   │   ├── malloc.o
2019-03-18 20:56:43 +01:00
│   │   ├── map.o
2019-03-18 13:45:26 +01:00
│   │   ├── panic.o
│   │   ├── table.o
│   │   ├── term.o
│   │   └── vga.o
│   ├── ltoa.o
2019-03-18 17:25:44 +01:00
│   ├── mem.o
2019-03-18 13:45:26 +01:00
│   ├── prog.o
│   ├── rand.o
│   ├── sprintf.o
│   ├── status.o
│   ├── string.o
│   ├── strtol.o
│   ├── ultoa.o
│   └── utoa.o
2019-03-17 23:05:31 +01:00
├── ChangeLog
├── COPYING
├── grub.log
2019-02-06 15:34:39 +01:00
├── kaleid
│   ├── crtlib
│   │   ├── atoi.c
2019-03-17 23:05:31 +01:00
│   │   ├── ctype.c
2019-02-06 15:34:39 +01:00
│   │   ├── itoa.c
2019-03-18 17:25:44 +01:00
│   │   ├── mem.c
2019-02-06 15:34:39 +01:00
│   │   ├── rand.c
│   │   ├── sprintf.c
│   │   ├── status.c
│   │   ├── string.c
│   │   └── strtol.c
│   ├── extras
│   │   ├── argv.c
│   │   └── prog.c
│   ├── include
│   │   ├── base
│   │   │   ├── assert.h
│   │   │   ├── bdefs.h
│   │   │   ├── crtlib.h
│   │   │   ├── errno.h
│   │   │   ├── limits.h
│   │   │   ├── masks.h
│   │   │   └── types.h
│   │   ├── extras
│   │   │   ├── argv.h
│   │   │   ├── list.h
│   │   │   ├── locks.h
│   │   │   ├── malloc.h
│   │   │   └── prog.h
│   │   ├── kalbase.h
│   │   ├── kaleid.h
│   │   ├── kalext.h
2019-03-19 13:38:09 +01:00
│   │   └── kernel
│   │   ├── base.h
│   │   ├── cpu.h
│   │   ├── heap.h
│   │   ├── iomisc.h
│   │   ├── mm.h
│   │   ├── multiboot.h
│   │   ├── panic.h
│   │   ├── proc.h
│   │   ├── sched.h
│   │   └── term.h
2019-02-06 15:34:39 +01:00
│   └── kernel
2019-03-17 23:05:31 +01:00
│   ├── cpu
│   │   └── cpuid.c
2019-02-06 15:34:39 +01:00
│   ├── init
│   │   ├── init.c
│   │   └── table.c
│   ├── io
2019-03-17 23:05:31 +01:00
│   │   ├── ata.inc
2019-02-06 15:34:39 +01:00
│   │   ├── cursor.c
│   │   ├── term.c
│   │   └── vga.c
│   ├── ke
│   │   └── panic.c
2019-03-17 23:05:31 +01:00
│   ├── mm
2019-03-18 17:25:44 +01:00
│   │   ├── heap.c
2019-03-18 20:56:43 +01:00
│   │   ├── malloc.c
│   │   └── map.c
2019-02-06 15:34:39 +01:00
│   └── proc
│   ├── Makefile
│   └── sched.c
2019-03-17 23:05:31 +01:00
├── loader_disasm32.asm
├── loader_disasm64.asm
2019-02-06 15:34:39 +01:00
├── Makefile
├── ProjectTree
2019-03-17 23:05:31 +01:00
├── qemu.log
2019-02-06 15:34:39 +01:00
└── Readme.md
2019-01-14 14:31:49 +01:00
2019-03-19 13:38:09 +01:00
30 directories, 112 files