adding some more lec6 for asm course lec5 is still empty
This commit is contained in:
parent
7dcff3983c
commit
5a0ed7de6d
@ -14,7 +14,7 @@ Proxy machines of course must act as both clients and servers.
|
|||||||
|
|
||||||
## SMTP
|
## SMTP
|
||||||
|
|
||||||
Three main components to smtp
|
Three main components to SMTP
|
||||||
|
|
||||||
* user agents
|
* user agents
|
||||||
* mail servers
|
* mail servers
|
||||||
|
29
cst337/lec/lec6.md
Normal file
29
cst337/lec/lec6.md
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# lec6
|
||||||
|
|
||||||
|
> diagrams needed for this
|
||||||
|
|
||||||
|
## Transistors
|
||||||
|
|
||||||
|
Two types of transistors will be discussed here: `NPN` and `PNP`.
|
||||||
|
Both types however, do share some properties here by referred to as the following:
|
||||||
|
|
||||||
|
* E = Emitter
|
||||||
|
* B = Base
|
||||||
|
* C = Collector
|
||||||
|
|
||||||
|
### NPN
|
||||||
|
|
||||||
|
When the base/gate is "on" we mean current can flow from the emitter to the collector.
|
||||||
|
|
||||||
|
### PNP
|
||||||
|
|
||||||
|
When the base/gate is "on" we mean current can _not_ flow from the emitter to the collector.
|
||||||
|
|
||||||
|
> When we say that a gate is "on" we're really saying that it's open.
|
||||||
|
|
||||||
|
|
||||||
|
## Gates: AND, OR, NOT, XOR
|
||||||
|
|
||||||
|
For this section we'll be using intel assembly syntax where the general syntax follows the form: `op src, dest`.
|
||||||
|
This will hold as long as op is the desired operation to represent the gate, src, will be one of our operands which holds the result after the operation, and dest holds the result after the operation.
|
||||||
|
### AND
|
@ -1,6 +1,10 @@
|
|||||||
# What this is
|
# What this is
|
||||||
|
|
||||||
A repository for all notes on as many lectures as I could attend. Information is meant to be somewhat correct enough to be reliable information regarding each topic.
|
The staging branch for all my notes taken during my time at CSUMB.
|
||||||
|
This branch is bound to have typos, logical errors, and downright incorrect and incomplete information.
|
||||||
|
For that reason you should really not rely on this branch for anything other than knowing that I just uploaded the rough draft of some things.
|
||||||
|
|
||||||
|
If you're looking for anything close to reliable then go to the master branch where the information there is more likely to have been reviewed andd edited for both clarity and accuracy.
|
||||||
|
|
||||||
## cst311/ - Introduction to Networking and internet Programming
|
## cst311/ - Introduction to Networking and internet Programming
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user