-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMVT_Demo.html
83 lines (73 loc) · 2.61 KB
/
MVT_Demo.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
<!DOCTYPE html>
<html>
<meta charset="utf-8"/>
<head>
<!-- CSS Files -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<!-- JavaScript Files -->
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/typeit.js"></script>
<script src="js/MVT.js"></script>
<script src="js/typed.js"></script>
<title>
Multiprogramming with Variable Number of Tasks
</title>
</head>
<body>
<div class="container-fluid">
<div id="page-heading">
<h1>MVT <br> </h1>
</div>
<div id="selection-form">
<button type="button" id="first-fit-select" class="btn btn-default">First-Fit</button>
<button type="button" id="best-fit-select" class="btn btn-default">Best-Fit</button>
<button type="button" id="worst-fit-select" class="btn btn-default">Worst-Fit</button>
</div>
<div id="demo-box">
<div class="col-sm-6" id="left-box">
<div class="col-sm-6">
<h4>Main Memory</h4>
<div id="block-0">
<div id = "block--1"> </div>
</div>
</div>
<div class="col-sm-6">
<h4>Input Queue</h4>
<div id="input-q-box">
</div>
<br>
<button class="btn btn-info" id="add-process-button">Add Process</button>
</div>
</div>
<div class="col-sm-6" id="right-box">
<div class="row" id="top-box">
<h3>Output Table</h3>
<table class="table table-striped" id="output-table">
<thead>
<tr>
<th>Process No.</th>
<th>Process Size</th>
<th>Allocation Status</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="row" id="bottom-box">
<div id="terminal-header" style="text-align: center;">
<div class="col-sm-3"></div>
<div class="col-sm-6">Terminal - log.txt</div>
<div class="col-sm-3"></div>
</div>
<div id="terminal-body">
</div>
</div>
</div>
</div>
</body>
</html>