mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-24 21:34:06 -06:00
vault backup: 2022-07-19 21:01:12
This commit is contained in:
parent
4fa55fca45
commit
f724a3439f
@ -4,8 +4,8 @@ aliases:
|
|||||||
tags:
|
tags:
|
||||||
- cosc204
|
- cosc204
|
||||||
- lecture
|
- lecture
|
||||||
sr-due: 2022-07-19
|
sr-due: 2022-07-27
|
||||||
sr-interval: 3
|
sr-interval: 8
|
||||||
sr-ease: 250
|
sr-ease: 250
|
||||||
---
|
---
|
||||||
|
|
||||||
@ -13,7 +13,11 @@ sr-ease: 250
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- [transistors](notes/transistors.md)
|
||||||
|
- [combinatorial-logic-circuit](notes/combinatorial-logic-circuit.md)
|
||||||
|
- [boolean-equations](notes/boolean-equations.md)
|
||||||
|
- [logic-gates](notes/logic-gates.md)
|
||||||
|
- [demultiplexor](notes/demultiplexor.md)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -4,8 +4,8 @@ tags:
|
|||||||
- cosc202
|
- cosc202
|
||||||
- lecture
|
- lecture
|
||||||
|
|
||||||
sr-due: 2022-06-9
|
sr-due: 2022-11-09
|
||||||
sr-interval: 22
|
sr-interval: 113
|
||||||
sr-ease: 270
|
sr-ease: 270
|
||||||
---
|
---
|
||||||
- [testing](notes/testing.md)
|
- [testing](notes/testing.md)
|
||||||
|
|||||||
@ -5,7 +5,7 @@ tags:
|
|||||||
- cosc204
|
- cosc204
|
||||||
---
|
---
|
||||||
|
|
||||||
Often used to describe/define Combinatorial logic circuits
|
Often used to describe/define [combinatorial-logic-circuit](notes/combinatorial-logic-circuit.md)
|
||||||
|
|
||||||
# Precedence
|
# Precedence
|
||||||
Precedence
|
Precedence
|
||||||
|
|||||||
@ -14,10 +14,9 @@ They can be described using logic expressions and therefore logic gates. We assu
|
|||||||
|
|
||||||
They can be defined:
|
They can be defined:
|
||||||
- Using a truth table
|
- Using a truth table
|
||||||
- Using boolean equations ($Q\ =\ A+\ B$)
|
- Using [boolean-equations](notes/boolean-equations.md) ($Q\ =\ A+\ B$)
|
||||||
- Using graphical symbols
|
- Using graphical symbols
|
||||||
|
|
||||||
|
|
||||||
# Notable Examples
|
# Notable Examples
|
||||||
- [1 Bit half adder](https://i.imgur.com/mjCVU4I.png)
|
- [1 Bit half adder](https://i.imgur.com/mjCVU4I.png)
|
||||||
- [1 Bit full adder: (includes carry input)](https://i.imgur.com/yu6kS83.png)
|
- [1 Bit full adder: (includes carry input)](https://i.imgur.com/yu6kS83.png)
|
||||||
|
|||||||
@ -18,7 +18,10 @@ tags:
|
|||||||
- [digital-data](notes/digital-data.md)
|
- [digital-data](notes/digital-data.md)
|
||||||
- [memory](notes/memory.md)
|
- [memory](notes/memory.md)
|
||||||
- [boolean-equations](notes/boolean-equations.md)
|
- [boolean-equations](notes/boolean-equations.md)
|
||||||
-
|
- [combinatorial-logic-circuit](notes/combinatorial-logic-circuit.md)
|
||||||
|
- [logic-gates](notes/logic-gates.md)
|
||||||
|
- [transistors](notes/transistors.md)
|
||||||
|
- [demultiplexor](notes/demultiplexor.md)
|
||||||
|
|
||||||
- Hardware
|
- Hardware
|
||||||
- Assembly
|
- Assembly
|
||||||
|
|||||||
12
content/notes/demultiplexor.md
Normal file
12
content/notes/demultiplexor.md
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
---
|
||||||
|
title: "demultiplexor"
|
||||||
|
aliases:
|
||||||
|
tags:
|
||||||
|
- cosc204
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
# Demultiplexor
|
||||||
|
- Mutli way swtich where the address determines which output recieves the input
|
||||||
|
|
||||||
|

|
||||||
15
content/notes/logic-gates.md
Normal file
15
content/notes/logic-gates.md
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
title: "logic-gates"
|
||||||
|
aliases:
|
||||||
|
tags:
|
||||||
|
- cosc204
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
# Logic Gates
|
||||||
|
- NOT
|
||||||
|
- AND
|
||||||
|
- OR
|
||||||
|
- NAND
|
||||||
|
- NOR
|
||||||
|
- XOR/EOR
|
||||||
21
content/notes/transistors.md
Normal file
21
content/notes/transistors.md
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
---
|
||||||
|
title: "transistors"
|
||||||
|
aliases:
|
||||||
|
tags:
|
||||||
|
- cosc204
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
# Transistors
|
||||||
|

|
||||||
|
|
||||||
|
- B: Base ⇒ A swtich connecting C to E
|
||||||
|
- open (C is disconnected from E) when supplied 0v
|
||||||
|
- closed (C is connected to E) by applying +5V
|
||||||
|
- C: Collector
|
||||||
|
- E: Emitter
|
||||||
|
|
||||||
|
Possible to create NAND gate using just transistors ∴ possible to create all logic gates using only transistors [^3]
|
||||||
|
|
||||||
|
|
||||||
|
[^3] : They dont actually do it this way (see lab)
|
||||||
Loading…
Reference in New Issue
Block a user