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
|
2019-04-09 23:35:31 +02:00
|
|
|
│ │ ├── extras
|
|
|
|
│ │ │ ├── argv.o
|
|
|
|
│ │ │ └── prog.o
|
2019-03-21 13:30:27 +01:00
|
|
|
│ │ ├── kernel
|
2019-04-09 17:16:13 +02:00
|
|
|
│ │ │ ├── cpu
|
|
|
|
│ │ │ │ ├── cpuid.o
|
|
|
|
│ │ │ │ └── idt.o
|
|
|
|
│ │ │ ├── init
|
2019-04-21 21:18:13 +02:00
|
|
|
│ │ │ │ ├── info.o
|
2019-04-09 17:16:13 +02:00
|
|
|
│ │ │ │ ├── init.o
|
2019-04-21 21:18:13 +02:00
|
|
|
│ │ │ │ ├── ssp.o
|
2019-04-09 17:16:13 +02:00
|
|
|
│ │ │ │ └── table.o
|
|
|
|
│ │ │ ├── io
|
|
|
|
│ │ │ │ ├── cursor.o
|
2019-04-24 23:10:19 +02:00
|
|
|
│ │ │ │ ├── keyb.o
|
|
|
|
│ │ │ │ ├── rtc.o
|
2019-05-07 23:16:56 +02:00
|
|
|
│ │ │ │ ├── spkr.o
|
2019-04-09 17:16:13 +02:00
|
|
|
│ │ │ │ └── vga.o
|
|
|
|
│ │ │ ├── ke
|
|
|
|
│ │ │ │ ├── log.o
|
|
|
|
│ │ │ │ └── panic.o
|
|
|
|
│ │ │ ├── mm
|
|
|
|
│ │ │ │ ├── gdt.o
|
|
|
|
│ │ │ │ ├── heap.o
|
|
|
|
│ │ │ │ ├── malloc.o
|
|
|
|
│ │ │ │ └── map.o
|
2019-05-08 00:02:12 +02:00
|
|
|
│ │ │ ├── po
|
|
|
|
│ │ │ │ └── shtdwn.o
|
2019-04-09 17:16:13 +02:00
|
|
|
│ │ │ └── ps
|
|
|
|
│ │ │ └── sched.o
|
|
|
|
│ │ ├── libbuf
|
2019-05-08 00:02:12 +02:00
|
|
|
│ │ │ ├── bclose.o
|
|
|
|
│ │ │ ├── bflush.o
|
|
|
|
│ │ │ ├── bgetc.o
|
|
|
|
│ │ │ ├── bmisc.o
|
|
|
|
│ │ │ ├── bopen.o
|
2019-03-25 23:10:06 +01:00
|
|
|
│ │ │ ├── bprint.o
|
2019-04-24 23:10:19 +02:00
|
|
|
│ │ │ ├── bputc.o
|
2019-05-08 00:02:12 +02:00
|
|
|
│ │ │ ├── bread.o
|
|
|
|
│ │ │ ├── bscan.o
|
2019-04-24 23:10:19 +02:00
|
|
|
│ │ │ ├── bscroll.o
|
2019-05-08 00:02:12 +02:00
|
|
|
│ │ │ └── bwrite.o
|
2019-04-09 23:35:31 +02:00
|
|
|
│ │ └── libc
|
|
|
|
│ │ ├── atoi.o
|
|
|
|
│ │ ├── ctype.o
|
|
|
|
│ │ ├── itoa.o
|
|
|
|
│ │ ├── mem.o
|
|
|
|
│ │ ├── rand.o
|
|
|
|
│ │ ├── sprintf.o
|
|
|
|
│ │ ├── status.o
|
|
|
|
│ │ ├── string.o
|
|
|
|
│ │ └── strtol.o
|
2019-04-01 11:40:58 +02:00
|
|
|
│ ├── grub.log
|
2019-04-27 00:07:04 +02:00
|
|
|
│ ├── kaleid32_disasm.asm
|
|
|
|
│ ├── kaleid64_disasm.asm
|
2019-04-09 17:16:13 +02:00
|
|
|
│ └── kernel.ld
|
2019-04-06 07:53:58 +02:00
|
|
|
├── 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
|
2019-04-24 23:10:19 +02:00
|
|
|
│ │ ├── cpuid.h
|
2019-04-21 21:18:13 +02:00
|
|
|
│ │ ├── cursor.h
|
2019-04-06 07:53:58 +02:00
|
|
|
│ │ ├── heap.h
|
2019-04-24 23:10:19 +02:00
|
|
|
│ │ ├── idt.h
|
2019-04-06 07:53:58 +02:00
|
|
|
│ │ ├── iomisc.h
|
|
|
|
│ │ ├── mboot.h
|
|
|
|
│ │ ├── mm.h
|
|
|
|
│ │ ├── proc.h
|
2019-05-08 00:02:12 +02:00
|
|
|
│ │ ├── pwmgnt.h
|
2019-04-24 23:10:19 +02:00
|
|
|
│ │ ├── sched.h
|
2019-05-07 23:16:56 +02:00
|
|
|
│ │ ├── speaker.h
|
2019-04-24 23:10:19 +02:00
|
|
|
│ │ └── time.h
|
2019-04-06 07:53:58 +02:00
|
|
|
│ ├── 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
|
2019-04-22 20:15:32 +02:00
|
|
|
│ │ │ ├── idt.c
|
2019-04-22 20:16:50 +02:00
|
|
|
│ │ │ ├── isr.asm
|
2019-04-22 20:15:32 +02:00
|
|
|
│ │ │ └── isr.inc
|
2019-04-06 07:53:58 +02:00
|
|
|
│ │ ├── init
|
2019-04-21 21:18:13 +02:00
|
|
|
│ │ │ ├── info.c
|
2019-04-06 07:53:58 +02:00
|
|
|
│ │ │ ├── init.c
|
2019-04-21 21:18:13 +02:00
|
|
|
│ │ │ ├── ssp.c
|
2019-04-06 07:53:58 +02:00
|
|
|
│ │ │ └── table.c
|
|
|
|
│ │ ├── io
|
|
|
|
│ │ │ ├── ata.inc
|
|
|
|
│ │ │ ├── cursor.c
|
2019-04-24 23:10:19 +02:00
|
|
|
│ │ │ ├── keyb.c
|
|
|
|
│ │ │ ├── rtc.c
|
2019-05-07 23:16:56 +02:00
|
|
|
│ │ │ ├── spkr.c
|
2019-04-06 07:53:58 +02:00
|
|
|
│ │ │ └── vga.c
|
|
|
|
│ │ ├── ke
|
|
|
|
│ │ │ ├── log.c
|
|
|
|
│ │ │ └── panic.c
|
|
|
|
│ │ ├── mm
|
|
|
|
│ │ │ ├── gdt.c
|
|
|
|
│ │ │ ├── heap.c
|
|
|
|
│ │ │ ├── malloc.c
|
|
|
|
│ │ │ └── map.c
|
2019-05-08 00:02:12 +02:00
|
|
|
│ │ ├── po
|
|
|
|
│ │ │ └── shtdwn.c
|
2019-04-06 07:53:58 +02:00
|
|
|
│ │ └── ps
|
|
|
|
│ │ └── sched.c
|
|
|
|
│ ├── libbuf
|
2019-05-08 00:02:12 +02:00
|
|
|
│ │ ├── bclose.c
|
|
|
|
│ │ ├── bflush.c
|
2019-05-07 23:16:56 +02:00
|
|
|
│ │ ├── bgetc.c
|
2019-05-08 00:02:12 +02:00
|
|
|
│ │ ├── bmisc.c
|
|
|
|
│ │ ├── bopen.c
|
2019-04-06 07:53:58 +02:00
|
|
|
│ │ ├── bprint.c
|
2019-04-24 23:10:19 +02:00
|
|
|
│ │ ├── bputc.c
|
2019-05-08 00:02:12 +02:00
|
|
|
│ │ ├── bread.c
|
|
|
|
│ │ ├── bscan.c
|
2019-04-24 23:10:19 +02:00
|
|
|
│ │ ├── bscroll.c
|
2019-05-08 00:02:12 +02:00
|
|
|
│ │ └── bwrite.c
|
2019-04-06 07:53:58 +02:00
|
|
|
│ └── 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-05-08 00:02:12 +02:00
|
|
|
39 directories, 144 files
|