-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
223 lines (184 loc) · 7.7 KB
/
index.html
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="UTF-8">
<!-- Remove this line if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width">
<meta name="description" content="XOS or eXperimental Operating System with features like multiprogramming, file system calls, and virtual memory. Various tools like File System Interface, Machine Simulator, Application Programmer's Language, System Programmer's Language are provided to build your own XOS. ">
<title>Home // eXperimental Operating System</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="shortcut icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="css/style.css">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<!-- Prompt IE 7 users to install Chrome Frame -->
<!--[if lt IE 8]><p class=chromeframe>Your browser is <em>ancient!</em> <a href="http://browsehappy.com/">Upgrade to a different browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to experience this site.</p><![endif]-->
<div class="container">
<header id="navtop">
<a href="index.html" class="logo fleft">
<img src="img/logo.png" alt="Designa Studio">
</a>
<nav class="fright">
<ul><li><a href="index.html" class="navactive">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="documentation.html">Documentation</a></li>
<li><a href="downloads.html">Downloads</a></li>
<li><a href="roadmap.html">Roadmap</a></li></ul>
</ul>
</nav>
</header>
<div class="home-page main">
<section class="grid-wrap" >
<header class="grid col-full">
<hr>
<p class="fleft"></p>
<a href="about.html" class="arrow fright">See More.</a>
</header>
<div class="grid col-one-half mq2-col-full">
<h1>BUILD<br/>
YOUR OWN <br>
OPERATING SYSTEM</h1>
<p style="color: red">An improved version of the project, called <a href="http://exposnitc.github.io/">eXpOS</a>, has been released.</p><br>
<p> Project <a href="xos-spec.html">XOS</a> or eXperimental Operating System is a platform to develop a toy operating system. It is an instructional tool for students to learn and implement OS data structures and functionalities on a simulated machine called <a href="xsm-spec.html">XSM</a> (eXperimental String Machine).
</p>
<p>
The OS is programmed using a custom language known as <a href="spl-spec.html">SPL</a> (System Programmer's Language) and application programs, which run on the OS, are programmed using <a href="apl-spec.html">APL</a> (Application Programmer's Language). </p>
<p> Proceed to the <a href="roadmap.html">Roadmap</a> to get started.
</p>
</div>
<div class="slider grid col-one-half mq2-col-full">
<div class="flexslider">
<div class="slides">
<div class="slide">
<figure>
<img src="img/img.jpg" alt="">
<figcaption>
<div>
<h5>Source Code</h5>
<p>The entire project code is hosted on Github <a href="http://github.com/xosnitc" target="_blank">http://github.com/xosnitc</a></p>
</div>
</figcaption>
</figure>
</div>
</div>
</div>
-
</section>
<section class="services grid-wrap">
<header class="grid col-full">
<hr>
<p class="fleft">Components</p>
<a href="documentation.html" class="arrow fright">see documentation</a>
</header>
<article class="grid col-one-third mq3-col-full">
<h4>OPERATING SYSTEM</h4>
<p>XOS (eXperimental Operating System) is an experimental operating system which is designed to be run on the XSM (eXperimental String Machine) architecture which is a simulated machine hardware with features like multiprogramming, virtual memory, and system calls. </p>
<a href="xos-spec.html" class="arrow fright">see specification</a>
</article>
<article class="grid col-one-third mq3-col-full">
<h4>FILE SYSTEM</h4>
<p>XFS or eXperimental File System is a file system architecture designed for
XOS (eXperimental Operating System). XFS is a simple filesystem which
has no directory structure. <br/><br/>
<a href="xfs-spec.html" class="arrow fright">see specification</a>
</p>
</article>
<article class="grid col-one-third mq3-col-full">
<h4>MACHINE</h4>
<p>The machine simulator is known as eXperimental String Machine (XSM). It is an interrupt driven uniprocessor machine. The machine handles all data as strings. <br/><br/>
<a href="xsm-spec.html" class="arrow fright">see specification</a>
</p>
</article>
</section>
<!--
<section class="works grid-wrap">
<header class="grid col-full">
<hr>
<p class="fleft">Works</p>
<a href="works.html" class="arrow fright">see more works</a>
</header>
<figure class="grid col-one-quarter mq2-col-one-half">
<a href="work1.html">
<img src="img/img.jpg" alt="">
<span class="zoom"></span>
</a>
<figcaption>
<a href="work1.html" class="arrow">Project page!</a>
<p>Lorem ipsum dolor set amet</p>
</figcaption>
</figure>
<figure class="grid col-one-quarter mq2-col-one-half">
<a href="#">
<img src="img/img.jpg" alt="">
<span class="zoom"></span>
</a>
<figcaption>
<a href="#" class="arrow">Project x</a>
<p>Lorem ipsum dolor set amet</p>
</figcaption>
</figure>
<figure class="grid col-one-quarter mq2-col-one-half">
<a href="#">
<img src="img/img.jpg" alt="">
<span class="zoom"></span>
</a>
<figcaption>
<a href="#" class="arrow">Project x</a>
<p>Lorem ipsum dolor set amet</p>
</figcaption>
</figure>
<figure class="grid col-one-quarter mq2-col-one-half">
<a href="#">
<img src="img/img.jpg" alt="">
<span class="zoom"></span>
</a>
<figcaption>
<a href="#" class="arrow">Project x</a>
<p>Lorem ipsum dolor set amet</p>
</figcaption>
</figure>
</section> -->
</div> <!--main-->
<div class="divide-top">
<footer class="grid-wrap">
<ul class="grid col-one-third social">
<li><a href="http://github.com/xosnitc">Github</a></li>
</ul>
<div class="up grid col-one-third ">
<a href="#navtop" title="Go back up">↑</a>
</div>
<nav class="grid col-one-third ">
<ul><li><a href="index.html" >Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="documentation.html">Documentation</a></li>
<li><a href="downloads.html">Downloads</a></li>
<li><a href="roadmap.html">Roadmap</a></li></ul>
</ul>
</nav>
</footer>
</div>
</div>
<!-- Javascript - jQuery
<script src="http://code.jquery.com/jquery.min.js"></script>-->
<script>window.jQuery || document.write('<script src="js/jquery-1.7.2.min.js"><\/script>')</script>
<!--[if (gte IE 6)&(lte IE 8)]>
<script src="js/selectivizr.js"></script>
<![endif]-->
<script src="js/jquery.flexslider-min.js"></script>
<script src="js/scripts.js"></script>
<!-- Asynchronous Google Analytics snippet. Change UA-XXXXX-X to be your site's ID. -->
<script>
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>