Subversion Repositories Kolibri OS

Rev

Rev 6242 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2229 Serge 1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;                                                              ;;
5565 serge 3
;; Copyright (C) KolibriOS team 2004-2015. All rights reserved. ;;
2229 Serge 4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
6
;; KERNEL32.INC                                                 ;;
7
;;                                                              ;;
5984 serge 8
;; Included 32 bit kernel files for MenuetOS                    ;;
2229 Serge 9
;;                                                              ;;
10
;; This file is kept separate as it will be easier to           ;;
11
;; maintain and compile with an automated SETUP program         ;;
12
;; in the future.                                               ;;
13
;;                                                              ;;
14
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
15
 
16
$Revision: 6246 $
17
 
18
; Core functions
19
include "core/sync.inc"     ; macros for synhronization objects
20
include "core/sys32.inc"    ; process management
21
include "core/sched.inc"    ; process scheduling
22
include "core/syscall.inc"  ; system call
23
include "core/fpu.inc"      ; all fpu/sse support
24
include "core/memory.inc"
5201 serge 25
include "core/mtrr.inc"
2229 Serge 26
include "core/heap.inc"     ; kernel and app heap
27
include "core/malloc.inc"   ; small kernel heap
28
include "core/taskman.inc"
29
include "core/dll.inc"
30
include "core/peload.inc"   ;
31
include "core/exports.inc"
32
include "core/string.inc"
33
include "core/v86.inc"      ; virtual-8086 manager
34
include "core/irq.inc"      ; irq handling functions
35
include "core/apic.inc"     ; Interrupt Controller functions
36
include "core/timers.inc"
4265 Serge 37
include "core/clipboard.inc" ; custom clipboard
2229 Serge 38
 
39
; GUI stuff
40
include "gui/window.inc"
41
include "gui/event.inc"
42
include "gui/font.inc"
43
include "gui/button.inc"
44
 
6242 serge 45
include "boot/shutdown.inc" ; kernel shutdown
2229 Serge 46
 
47
; file system
48
 
49
include "blkdev/disk.inc" ; support for plug-n-play disks
50
include "blkdev/disk_cache.inc" ; caching for plug-n-play disks
4287 Serge 51
include "blkdev/rd.inc"   ; ramdisk read /write
52
include "fs/fat.inc"      ; read / write for fat filesystem
2229 Serge 53
include "fs/ntfs.inc"     ; read / write for ntfs filesystem
54
include "fs/fs_lfn.inc"    ; syscall, version 2
55
include "fs/iso9660.inc"  ; read for iso9660 filesystem CD
4265 Serge 56
include "fs/ext2/ext2.asm"     ; read / write for ext2 filesystem
57
include "fs/xfs.asm"      ; read / write for xfs filesystem
2229 Serge 58
 
59
; sound
60
 
61
include "sound/playnote.inc" ; player Note for Speaker PC
62
 
63
; display
64
 
6246 serge 65
;include "video/vesa12.inc"         ; Vesa 1.2 functions
66
include "video/vesa20.inc"          ; Vesa 2.0 functions
67
include "video/blitter.inc"
68
include "video/vga.inc"             ; VGA 16 color functions
69
include "video/cursors.inc"         ; cursors functions
70
include "video/framebuffer.inc"     ; framebuffer functions
2229 Serge 71
 
72
; Network Interface & TCPIP Stack
73
 
74
include "network/stack.inc"
75
 
76
;include "drivers/uart.inc"
77
 
78
 
79
; Mouse pointer
80
 
81
include "gui/mouse.inc"
82
 
83
; Window skinning
84
 
85
include "gui/skincode.inc"
86
 
87
; Pci functions
88
 
89
include "bus/pci/pci32.inc"
90
 
3555 Serge 91
; USB functions
92
include "bus/usb/init.inc"
93
 
2229 Serge 94
; Floppy drive controller
95
 
96
include "blkdev/fdc.inc"
97
include "blkdev/flp_drv.inc"
98
 
99
; IDE cache
100
include "blkdev/ide_cache.inc"
101
 
102
; HD drive controller
103
include "blkdev/hd_drv.inc"
4423 Serge 104
; Access through BIOS
105
include "blkdev/bd_drv.inc"
2229 Serge 106
 
107
; CD drive controller
108
 
109
include "blkdev/cd_drv.inc"
110
 
111
; Character devices
112
 
113
include "hid/keyboard.inc"
114
include "hid/mousedrv.inc"
115
 
116
; setting date,time,clock and alarm-clock
117
 
118
include "hid/set_dtc.inc"
119
 
120
;% -include
121
 
122
;parser file names
123
include "fs/parse_fn.inc"
124
 
125
; work with conf lib
126
include "core/conf_lib.inc"
127
 
128
; load external lib
129
include "core/ext_lib.inc"
130
 
131
; list of external functions
132
include "imports.inc"