-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintro.html
More file actions
49 lines (35 loc) · 2.22 KB
/
intro.html
File metadata and controls
49 lines (35 loc) · 2.22 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
<!DOCTYPE html>
<html>
<title>CPU: Introduction</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-theme-green.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {font-family: "Roboto", sans-serif}
.w3-bar-block .w3-bar-item{padding:16px;font-weight:bold}
</style>
<body>
<div class="w3-overlay w3-hide-large w3-animate-opacity" onclick="w3_close()" style="cursor:pointer" id="myOverlay"></div>
<div class="w3-main">
<header class="w3-container w3-theme" style="padding:32px 32px">
<h1 class="w3-xxxlarge">How to build a CPU</h1>
</header>
<div class="w3-container" style="padding:32px">
<h2>Introduction</h2><h7>Austin Fay <a class="w3-text-gray">January 6, 2018</a></h7>
<p>For as long as I can remember, I have been mystified by how computers actually process data at the hardware level. Sure, I was aware that desktop computers were comprised of a motherboard, CPU, memory, disk drive and input devices. I also knew that computers are "just ones and zeros." But beyond that, I was clueless. So when I finally learned the details about how actual computer hardware works, I couldn't help but inform everyone I know. Unfortunately, not everyone wants to know. So if you're reading this, you either clicked here by accident, or you really want to know how modern digital computing works at the lowest level. So that's what this site is about then. If you read the whole thing, you might have a good idea about how you might go about building a CPU.</p>
<hr>
<p>I learned about this topic from various sources of information:</p>
<ul class="w3-ul">
<li>Ben Eater: <a href="https://eater.net/" target="new">eater.net</a></li>
<li>Computerphile: <a href="https://www.youtube.com/user/Computerphile" target="new">youtube.com</a></li>
<li>M. Morris Mano (1998). Computer Engineering: Hardware Design</li>
</ul>
</div>
<footer class="w3-container">
<p>© Copyright 2018 Austin Fay</p>
</footer>
</div>
</body>
</html>