-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
93 lines (93 loc) · 2.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>8085 Sim</title>
<style>
* {
padding: 0;
margin: 0;
}
</style>
<link rel="stylesheet" href="./microprocessor.css" />
</head>
<body>
<main>
<div class="microprocessor8085">
<img class="microprocessor8085-img" src="./8085MPKit.svg" />
<div class="power-led"></div>
<div class="power-switch">
<img src="./power-switch.svg" />
</div>
<div class="screen">
<span class="text">STUDENT-85</span>
<span class="input"></span>
</div>
<div class="reset-button">
<button id="reset-btn">RESET</button>
</div>
</div>
<!-- UI Options -->
<div class="ui">
<input class="size-selector" type="range" value="100" />
<div class="radio-btns">
<label for="radio-green">Green</label>
<input
type="radio"
id="radio-green"
name="screenColor"
value="#54de3f"
/>
<label for="radio-blue">Blue</label>
<input
type="radio"
id="radio-blue"
name="screenColor"
value="#2bc2d5"
/>
<label for="radio-yellow">Yellow</label>
<input
type="radio"
id="radio-yellow"
name="screenColor"
value="#e7d849"
checked
/>
</div>
<div class="enable-keyboard">
<input
type="text"
class="mobile-keyboard-enable"
value="Activate mobile keyboard"
/>
</div>
<div class="full-screen">
<button>Full Screen</button>
</div>
</div>
<section class="info-section">
<div class="developer-info">
<span>Developed By - Abdul Zainul Khan</span>
<span>BTech 3rd Year GEHU, Dehradun(2026)</span>
<span>Developed using raw JavaScript(ES6)</span>
</div>
<div class="help-guide">
For Help See read me ad GitHub -
<a
href="https://github.com/ZainAlAbideenKhan/8085Sim/blob/main/README.md"
target="_blank"
>Click Here</a
>
</div>
</section>
</main>
</body>
<script type="module" src="./8085instr.js"></script>
<script type="module" src="./globals.js"></script>
<script type="module" src="./hexnum.js"></script>
<script type="module" src="./ram.js"></script>
<script type="module" src="./executionEngine.js"></script>
<script type="module" src="./microprocessor.js"></script>
<script type="module" src="./main.js"></script>
</html>