-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy patharch_spec.html
210 lines (170 loc) · 8.61 KB
/
arch_spec.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Architecture Specification</title>
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon -->
<link rel="shortcut icon" type="image/png" href="img/favicon.jpg"/>
<!-- CSS
================================================== -->
<!-- Bootstrap css file-->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Font awesome css file-->
<link href="css/font-awesome.min.css" rel="stylesheet">
<!-- Superslide css file-->
<link rel="stylesheet" href="css/superslides.css">
<!-- Slick slider css file -->
<link href="css/slick.css" rel="stylesheet">
<!-- smooth animate css file -->
<link rel="stylesheet" href="css/animate.css">
<!-- Elastic grid css file -->
<link rel="stylesheet" href="css/elastic_grid.css">
<!-- Circle counter cdn css file -->
<link rel='stylesheet prefetch' href='css/jquery.circliful.css'>
<!-- Default Theme css file -->
<link id="orginal" href="css/themes/eucalyptus-theme.css" rel="stylesheet">
<!-- Main structure css file -->
<link href="style.css" rel="stylesheet">
<!-- Google fonts -->
<link href='css/opensans.css' rel='stylesheet' type='text/css'>
<link href='css/varela.css' rel='stylesheet' type='text/css'>
<link href='css/montserrat.css' rel='stylesheet' type='text/css'>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- BEGAIN PRELOADER -->
<div id="preloader">
<div id="status"> </div>
</div>
<!-- END PRELOADER -->
<!--=========== BEGIN HEADER SECTION ================-->
<header id="header">
<!-- BEGIN MENU -->
<div class="menu_area">
<nav class="navbar navbar-default navbar-fixed-top past-main" role="navigation">
<div class="container">
<div class="navbar-header">
<!-- FOR MOBILE VIEW COLLAPSED BUTTON -->
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- LOGO -->
<!-- TEXT BASED LOGO -->
<a class="navbar-brand" href="index.html">eXpOS<span>NITC</span></a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul id="top-menu" class="nav navbar-nav navbar-right main_nav">
<li><a href="./index.html">Home</a></li>
<li><a href="./documentation.html" target="_blank">Documentation</a></li>
<li><a href="./Roadmap.html" target="_blank">Roadmap</a></li>
<li><a href="faq.html" target="_blank">FAQ</a></li>
<li><a href="About_us.html" target="_blank">About Us</a></li>
</ul>
</div>
</div>
</nav>
</div>
<!-- END MENU -->
</header>
<!--=========== End HEADER SECTION ================-->
<!--heading of the page---->
<div class="container" style="margin-top: 80px;">
<br>
<br>
<h1>XSM Architecture Specification</h1>
</div>
<!--=========== BEGIN Intro SECTION ================-->
<section id="about" style="text-align:justify">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<!-- START ABOUT HEADING -->
<div class="heading">
<h2>Introduction</h2>
<br/>
<br/>
<p>The Experimental String Machine (XSM) is a hypothetical interrupt driven uniprocessor machine. The basic unit of data which the machine handles is the <b>string</b>. A string is a sequence of characters terminated by the special character '\0'. The length of a string is at most XSM_WSIZE characters including the '\0' character. (The value of XSM_WSIZE is implementation dependent and is left unspecified in this documentation). The machine treats integers, characters or sequence of characters as strings.</p>
<p>The basic data storage components of the machine are <b>registers</b>, <b>memory</b> and the <b>disk</b>. The memory and the disk are organised as sequences of words. The word is the fundamental memory/disk storage element and each memory/disk word can store a string. In the following, we often (mis)use notation and use the term “word” to refer to the “string stored in the memory/disk word”.</p>
<p> <b> Important Note: </b> <i> Througout the architecture documentation, we have used the terms kernel mode for previleged mode
and user mode for unprevileged mode of machine execution. However, "kernel" and "user" are OS level abstractions
and not connected with the hardware. Hence the above usage is incorrect technically.
However since the kernel of an OS normally runs in the previliged mode and
user programs execute in the unpreviliged mode, the (incorrect) terminology has been used.</i> </p>
<p>This document contains the following sections:</p>
</div>
</div>
</div>
</div>
</section>
<!--=========== END Intro SECTION ================-->
<!--=========== BEGIN contents SECTION ================-->
<div class="container">
<div class="about_content">
<h4 class="panel-title"><a href="arch_spec-files/machine_organisation.html" target="_blank">
<span class="fa fa-check-square-o"></span>Machine Organisation</a></h4>
<br>
<h4 class="panel-title"><a href="arch_spec-files/interrupts_exception_handling.html" target="_blank"><span class="fa fa-check-square-o"></span>Interrupts and Exception Handling</a></h4>
<br>
<h4 class="panel-title"><a href="arch_spec-files/instruction_set.html" target="_blank"><span class="fa fa-check-square-o"></span>Instruction Set</a></h4>
<br>
<h4 class="panel-title"><a href="arch_spec-files/paging_hardware.html" target="_blank"><span class="fa fa-check-square-o"></span>Paging Hardware and Address Translation</a></h4>
<br>
<h4 class="panel-title"><a href="arch_spec-files/nexsm.html" target="_blank" style="color:red"><span class="fa fa-check-square-o"></span>NEXSM (Two Core) Architecture Specification</a></h4>
<br>
</div>
</div>
<!--=========== END SECTION ================-->
<!--=========== BEGIN FOOTER ================-->
<footer id="footer">
<div class="container">
<div class="row">
<a style="float: right" rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/"><img alt="Creative Commons License" style="border-width:0" src="./img/creativecommons.png" /></a>
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="footer_left">
<p><a href="http://www.nitc.ac.in/">National Institute of Technology, Calicut</a></p>
</div>
</div>
</div>
</div>
</footer>
<!--=========== END FOOTER ================-->
<!-- Javascript Files
================================================== -->
<!-- initialize jQuery Library -->
<script src="js/jquery.min.js"></script>
<!-- Google map -->
<script src="js/map_js.js"></script>
<script src="js/jquery.ui.map.js"></script>
<!-- For smooth animatin -->
<script src="js/wow.min.js"></script>
<!-- Bootstrap js -->
<script src="js/bootstrap.min.js"></script>
<!-- superslides slider -->
<script src="js/jquery.superslides.min.js" type="text/javascript"></script>
<!-- slick slider -->
<script src="js/slick.min.js"></script>
<!-- for circle counter -->
<script src='js/jquery.circliful.min.js'></script>
<!-- for portfolio filter gallery -->
<script src="js/modernizr.custom.js"></script>
<script src="js/classie.js"></script>
<script src="js/elastic_grid.min.js"></script>
<script src="js/portfolio_slider.js"></script>
<!-- Custom js-->
<script src="js/custom.js"></script>
</body>
</html>