Last Sync: 2022-06-04 14:00:04
This commit is contained in:
parent
dbfd36f7d4
commit
3a4b05d156
3 changed files with 25 additions and 4 deletions
|
@ -5,6 +5,8 @@ tags:
|
||||||
- von-neumann
|
- von-neumann
|
||||||
---
|
---
|
||||||
|
|
||||||
|
# Von Neumann CPU architecture
|
||||||
|
|
||||||
At the core of a computer sits the Central Processing Unit. This is what manages and executes all computation.
|
At the core of a computer sits the Central Processing Unit. This is what manages and executes all computation.
|
||||||
|
|
||||||
The CPU comprises three core components:
|
The CPU comprises three core components:
|
||||||
|
|
|
@ -6,7 +6,7 @@ tags:
|
||||||
- binary
|
- binary
|
||||||
---
|
---
|
||||||
|
|
||||||
## Logic gates
|
# Logic gates
|
||||||
|
|
||||||
Logic gates are the basic building blocks of digital computing. **A logic gate is an electrical circuit that has one or more than one input and only one output.** The input controls the output and is isomorphic with [Boolean connectives](../../Logic/Truth-functional_connectives.md) defined in terms of [truth-tables](../../Logic/Truth-tables.md).
|
Logic gates are the basic building blocks of digital computing. **A logic gate is an electrical circuit that has one or more than one input and only one output.** The input controls the output and is isomorphic with [Boolean connectives](../../Logic/Truth-functional_connectives.md) defined in terms of [truth-tables](../../Logic/Truth-tables.md).
|
||||||
|
|
||||||
|
|
|
@ -2,15 +2,34 @@ h1, h2, h3, h4, h5, h6, p {
|
||||||
font-family: 'Inter';
|
font-family: 'Inter';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 16px;
|
|
||||||
|
font-size: 24px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
p, ul, li {
|
h2 {
|
||||||
|
font-size: 20px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 18px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
font-size: 16px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
h5 {
|
||||||
|
font-size: 14px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
p, ul, li, dl, dd, dt {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre, code {
|
pre, code {
|
||||||
font-family: 'LigaLiberationMono';
|
font-family: 'LigaLiberationMono';
|
||||||
font-size: 14px;
|
font-size: 12px p !important;
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue