Subversion Repositories shark

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 pj 1
/* Project:     OSLib
2
 * Description: The OS Construction Kit
3
 * Date:                1.6.2000
4
 * Idea by:             Luca Abeni & Gerardo Lamastra
5
 *
6
 * OSLib is an SO project aimed at developing a common, easy-to-use
7
 * low-level infrastructure for developing OS kernels and Embedded
8
 * Applications; it partially derives from the HARTIK project but it
9
 * currently is independently developed.
10
 *
11
 * OSLib is distributed under GPL License, and some of its code has
12
 * been derived from the Linux kernel source; also some important
13
 * ideas come from studying the DJGPP go32 extender.
14
 *
15
 * We acknowledge the Linux Community, Free Software Foundation,
16
 * D.J. Delorie and all the other developers who believe in the
17
 * freedom of software and ideas.
18
 *
19
 * For legalese, check out the included GPL license.
20
 */
21
 
22
/*      The abominious: an ``include all'' header!!!    */
23
 
24
#ifndef __LL_LL_H__
25
 
26
#define __LL_LL_H__
27
 
28
#include <ll/sys/ll/aspace.h>
29
#include <ll/sys/ll/event.h>
30
#include <ll/sys/ll/exc.h>
31
#include <ll/sys/ll/ll-data.h>
32
#include <ll/sys/ll/ll-func.h>
33
#include <ll/sys/ll/time.h>
34
#include <ll/sys/ll/ll-instr.h>
35
#include <ll/sys/ll/ll-mem.h>
36
#include <ll/i386/cons.h>
37
#include <ll/i386/error.h>
38
#include <ll/i386/hw-data.h>
39
#include <ll/i386/hw-func.h>
40
#include <ll/i386/hw-instr.h>
41
#include <ll/i386/hw-io.h>
42
#include <ll/i386/linkage.h>
43
#include <ll/i386/mb-hdr.h>
44
#include <ll/i386/mb-info.h>
45
#include <ll/i386/mem.h>
46
#include <ll/i386/sel.h>
47
#include <ll/i386/tss-ctx.h>
48
#include <ll/i386/x-bios.h>
49
#include <ll/i386/x-dos.h>
50
 
51
#endif