-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
52 lines (29 loc) · 1.31 KB
/
README
File metadata and controls
52 lines (29 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
This is the dx operating system, version 0.1.2, released 2012-02-11
* WHAT IS THIS?
A small OS for the x86. See dx/doc/vision.txt.
* CURRENT STATUS
Still under active development. Not useful yet. Basic micro kernel,
some user mode libraries, couple of user executables. Nothing else.
Should boot cleanly from either floppy disk(!) or CD-ROM image.
* BUILD INSTRUCTIONS
See the documentation under dx/doc/build_process.
* RELEASE NOTES and CHANGES FROM PREVIOUS VERSIONS
See dx/doc/release_notes.txt.
* HARDWARE REQUIREMENTS
See dx/doc/hardware_support.txt.
* ONLINE
This project is officially hosted at https://bitbucket.org/dgaur/dx.
See also http://www.dangaur.com/portfolio/dx.html.
* COPYRIGHT + LICENSE
All code is distributed under the standard two-clause BSD license; and
copyright (c) 2005 - 2011, Dan Gaur; except:
* Doug Lea's malloc.c implementation, v2.8.5, from
http://g.oswego.edu/dl/html/malloc.html. See dx/src/lib/libc/malloc.c.
Public domain.
* The "freely distributable libm" math library, v5.3, from
http://www.netlib.org/fdlibm or http://www.validlab.com/software.
See dx/src/lib/libm.
* LuaJIT, v1.1.7, from www.luajit.org. See dx/src/lib/liblua. Released
under MIT license.
* David Gay's gdtoa library, from http://www.netlib.org/fp. See
dx/src/lib/libgdtoa.