2010-01-23 17:01:24 +01:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; ;;
|
2015-01-08 21:10:22 +01:00
|
|
|
;; Copyright (C) KolibriOS team 2004-2015. All rights reserved. ;;
|
2010-01-23 17:01:24 +01:00
|
|
|
;; Distributed under terms of the GNU General Public License ;;
|
|
|
|
;; ;;
|
|
|
|
;; KERNEL32.INC ;;
|
|
|
|
;; ;;
|
|
|
|
;; Included 32 bit kernel files for MenuetOS ;;
|
|
|
|
;; ;;
|
|
|
|
;; This file is kept separate as it will be easier to ;;
|
|
|
|
;; maintain and compile with an automated SETUP program ;;
|
|
|
|
;; in the future. ;;
|
|
|
|
;; ;;
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
$Revision$
|
|
|
|
|
|
|
|
; Core functions
|
|
|
|
include "core/sync.inc" ; macros for synhronization objects
|
|
|
|
include "core/sys32.inc" ; process management
|
|
|
|
include "core/sched.inc" ; process scheduling
|
|
|
|
include "core/syscall.inc" ; system call
|
|
|
|
include "core/fpu.inc" ; all fpu/sse support
|
|
|
|
include "core/memory.inc"
|
2014-03-04 14:58:20 +01:00
|
|
|
include "core/mtrr.inc"
|
2010-01-23 17:01:24 +01:00
|
|
|
include "core/heap.inc" ; kernel and app heap
|
|
|
|
include "core/malloc.inc" ; small kernel heap
|
|
|
|
include "core/taskman.inc"
|
|
|
|
include "core/dll.inc"
|
|
|
|
include "core/peload.inc" ;
|
|
|
|
include "core/exports.inc"
|
|
|
|
include "core/string.inc"
|
|
|
|
include "core/v86.inc" ; virtual-8086 manager
|
2011-08-24 13:01:37 +02:00
|
|
|
include "core/irq.inc" ; irq handling functions
|
2011-09-22 18:44:10 +02:00
|
|
|
include "core/apic.inc" ; Interrupt Controller functions
|
2011-08-26 13:51:56 +02:00
|
|
|
include "core/timers.inc"
|
2013-11-10 05:10:03 +01:00
|
|
|
include "core/clipboard.inc" ; custom clipboard
|
2010-01-23 17:01:24 +01:00
|
|
|
|
|
|
|
; GUI stuff
|
|
|
|
include "gui/window.inc"
|
|
|
|
include "gui/event.inc"
|
|
|
|
include "gui/font.inc"
|
|
|
|
include "gui/button.inc"
|
|
|
|
|
2016-02-18 03:03:38 +01:00
|
|
|
include "boot/shutdown.inc" ; kernel shutdown
|
2010-01-23 17:01:24 +01:00
|
|
|
|
|
|
|
; file system
|
|
|
|
|
2011-08-31 18:26:51 +02:00
|
|
|
include "blkdev/disk.inc" ; support for plug-n-play disks
|
|
|
|
include "blkdev/disk_cache.inc" ; caching for plug-n-play disks
|
2010-01-23 17:01:24 +01:00
|
|
|
include "blkdev/rd.inc" ; ramdisk read /write
|
2013-11-21 17:07:16 +01:00
|
|
|
include "fs/fat.inc" ; read / write for fat filesystem
|
|
|
|
include "fs/ntfs.inc" ; read / write for ntfs filesystem
|
2010-01-23 17:01:24 +01:00
|
|
|
include "fs/fs_lfn.inc" ; syscall, version 2
|
2010-01-23 16:24:03 +01:00
|
|
|
include "fs/iso9660.inc" ; read for iso9660 filesystem CD
|
2013-09-28 12:43:18 +02:00
|
|
|
include "fs/ext2/ext2.asm" ; read / write for ext2 filesystem
|
2013-09-17 23:28:18 +02:00
|
|
|
include "fs/xfs.asm" ; read / write for xfs filesystem
|
2010-01-23 17:01:24 +01:00
|
|
|
|
|
|
|
; sound
|
|
|
|
|
|
|
|
include "sound/playnote.inc" ; player Note for Speaker PC
|
|
|
|
|
|
|
|
; display
|
|
|
|
|
2012-02-26 01:26:08 +01:00
|
|
|
;include "video/vesa12.inc" ; Vesa 1.2 functions
|
2010-01-23 17:01:24 +01:00
|
|
|
include "video/vesa20.inc" ; Vesa 2.0 functions
|
2016-02-20 10:57:44 +01:00
|
|
|
include "video/blitter.inc"
|
2010-01-23 17:01:24 +01:00
|
|
|
include "video/vga.inc" ; VGA 16 color functions
|
|
|
|
include "video/cursors.inc" ; cursors functions
|
2016-02-20 10:57:44 +01:00
|
|
|
include "video/framebuffer.inc" ; framebuffer functions
|
2010-01-23 16:24:03 +01:00
|
|
|
|
2010-01-23 17:01:24 +01:00
|
|
|
; Network Interface & TCPIP Stack
|
|
|
|
|
|
|
|
include "network/stack.inc"
|
|
|
|
|
|
|
|
;include "drivers/uart.inc"
|
|
|
|
|
|
|
|
|
|
|
|
; Mouse pointer
|
|
|
|
|
|
|
|
include "gui/mouse.inc"
|
|
|
|
|
|
|
|
; Window skinning
|
|
|
|
|
|
|
|
include "gui/skincode.inc"
|
|
|
|
|
|
|
|
; Pci functions
|
|
|
|
|
|
|
|
include "bus/pci/pci32.inc"
|
|
|
|
|
2013-05-18 01:53:28 +02:00
|
|
|
; USB functions
|
|
|
|
include "bus/usb/init.inc"
|
|
|
|
|
2010-01-23 17:01:24 +01:00
|
|
|
; Floppy drive controller
|
|
|
|
|
|
|
|
include "blkdev/fdc.inc"
|
|
|
|
include "blkdev/flp_drv.inc"
|
|
|
|
|
|
|
|
; IDE cache
|
|
|
|
include "blkdev/ide_cache.inc"
|
|
|
|
|
|
|
|
; HD drive controller
|
|
|
|
include "blkdev/hd_drv.inc"
|
2013-12-30 12:42:20 +01:00
|
|
|
; Access through BIOS
|
|
|
|
include "blkdev/bd_drv.inc"
|
2010-01-23 17:01:24 +01:00
|
|
|
|
|
|
|
; CD drive controller
|
|
|
|
|
|
|
|
include "blkdev/cd_drv.inc"
|
|
|
|
|
|
|
|
; Character devices
|
|
|
|
|
|
|
|
include "hid/keyboard.inc"
|
|
|
|
include "hid/mousedrv.inc"
|
|
|
|
|
|
|
|
; setting date,time,clock and alarm-clock
|
|
|
|
|
|
|
|
include "hid/set_dtc.inc"
|
|
|
|
|
|
|
|
;% -include
|
|
|
|
|
|
|
|
;parser file names
|
|
|
|
include "fs/parse_fn.inc"
|
|
|
|
|
|
|
|
; work with conf lib
|
|
|
|
include "core/conf_lib.inc"
|
|
|
|
|
|
|
|
; load external lib
|
|
|
|
include "core/ext_lib.inc"
|
|
|
|
|
|
|
|
; list of external functions
|
|
|
|
include "imports.inc"
|