Lesson 1 Flashcards
refers to those attributes (characteristics) of a system that have a direct impact on the logical execution of a program.
Computer Architecture
is part of the abstract model of a computer that defines how the CPU is controlled by the software.
Instruction Set Architecture (ISA)
is a model of a computer system (considered either as hardware or software) constructed to allow a detailed and precise analysis of how the computer system works.
An abstract model of a machine
What are the 2 classifications of ISA?
- RISC (Reduced Instruction Set Computer) architecture
- CISC (Complex Instruction Set Computer) architecture
It means each instruction cycle requires only one clock cycle, and each cycle contains three parameters. what are these three parameters?
fetch, decode and execute
is a memory that uses capacitors to store data.
DRAM
It is another type of memory that a computer uses that doesn’t have to be constantly refreshed.
SRAM (Static RAM)
is a CPU internal memory and its job is to store copies of data and instructions from RAM that’s waiting to be used by the CPU.
CPU cache
It is a highly customized set of instructions used in portable devices due to system reliability such as Apple iPod, mobiles/smartphones, Nintendo DS.
RISC Architecture
Some important features of RISC processors are:
- One cycle execution time
- Pipelining technique
- A large number of registers
CISC is developed by?
Intel
is the continuous and somewhat overlapped movement of instruction to the processor or in the arithmetic steps taken by the processor to perform an instruction
pipeline
is the system of naming or representing numbers.
number system / numeral system
Write (14)10 as a binary number.
14/2 = 7 = 0 MSB
7/2 = 3 = 1
3/2 = 1 = 1
1/2 = 0 = 1 LSB
∴ (14)10 = 1110
Convert (215)8 into decimal.
(215)8 = 2 × 82 + 1 × 81 + 5 × 80
= (2 × 64) + (1 × 8) + (5 × 1)
= 128 + 8 + 5
= (141)
ASCII
American Standard Code for Information Interchange
occurs when you attempt to store inside an integer variable a value that is larger than the maximum value the variable can hold.
Integer Overflow
is a format used to represent alphabets, punctuation marks, and other symbols.
Text Code
Text Code composed of:
- EBCDIC (Extended Binary Coded Decimal Interchange Code)
- ASCII (American Standard Code for Information Interchange)
- Extended ASCII
- Unicode
is a BCD which is representing decimal numbers beyond 9.
Packed BCD
is a code for representing 128 English characters as numbers
ASCII Code
There are three basic I/O mechanisms that computer systems can use to communicate with peripheral devices:
- memory-mapped input/output
- I/O-mapped input/output
- direct memory access (DMA).
uses ordinary locations within the CPU’s memory address space to communicate with peripheral devices.
Memory-Mapped I/O
an enhanced version of the 8085 Microprocessor that was designed by Intel in 1976.
8086 Microprocessor
The microprocessor cannot do anything by itself therefore, it needs to be linked with memory, extra peripherals, or IO devices. This linking is called
Interfacing
The interfacing of the I/O devices in microprocessors can be done in two ways:
- Memory-Mapped I/O Interfacing
- I/O Mapped I/O Interfacing
is a special form of memory-mapped I/O where the peripheral device reads and writes data located in memory without CPU intervention.
Data Memory Access (DMA)
is a special form of memory-mapped I/O where the peripheral device reads and writes data located in memory without CPU intervention.
Direct Memory Access (DMA)
is a unique identifier used by a device or CPU for data tracking
memory address
is a link between components or devices connected to a computer. It carries data between a CPU and the system memory via the motherboard.
bus
3 Types of buses in a computer:
- data bus
- control bus
- address bus
is a group of electrical wires that sends information (data) between two or more components. It is a computer bus that is used to transmit data among components.
data bus / processor bus
What are the 2 types of data bus?
serial
parallel
use a single wire to both send and receive information between components
serial bus
usually refer to the types of cables, ports, and connectors used to connect these types of external devices to computers.
FireWire
use many wires to communicate between components. Those buses may be internal to the processor or external, relative to a given component being connected.
parallel bus
is a set of standards for physically connecting and transferring data between computers and peripheral devices.
SCSI (Small Computer System Interface)
is a computer bus that is used by the CPU to communicate with devices that are contained within the computer. It carries control signals from the processor to other components.
Control Bus
is a computer bus architecture. It is used to transfer data between devices. It is a computer bus that is used to specify a physical address in the memory.
Address Bus
are methods used to locate data and instructions in primary memory.
Memory addressing modes
There are 5 different modes of memory addressing in Assembly language:
- Immediate Memory Addressing Mode
- Direct Memory Addressing Mode
- Indirect Memory Addressing Mode
- Register Memory Addressing Mode
- Implied Memory Addressing Mode
refers to the operational units and their interconnections that realize the architectural specifications.
Computer Organization
the output of the learning and processing block, which are sent to different output interfaces to produce the desired output in the real physical world.
Control signals
There are two approaches used for generating the control signals in proper sequence:
- Hardwired Control unit
- Micro-programmed control unit
is a method of generating control signals with the help of Finite State Machines (FSM).
hardwired control unit
Finite State Machines is also called as?
FA (Finite Automata)
FSM is divided into 2 categories:
- FA with output
- FA without output
FA with output has 2 categories:
- Moore Machine
- Mealy Machine
FA without output has 3 categories:
- Deterministic Finite Automata (DFA)
- Non-deterministic Finite Automata (NFA)
- Epsilon-Non-deterministic Finite Automata (E-NFA)
is the simplest model of computation and it has a very limited memory.
FSM
Then we saw some edges:
A»_space;»» B»_space;1
A»_space;»» C»_space;0
C»_space;»» A»_space;0
C»_space;»» D»_space;1
D»_space;»» C»_space;1
B»_space;»» D»_space;0
D»_space;»» B»_space;0
That edges are called the?
Transitions
The labeling of edges is known as?
inputs
the circles on the FDA diagram are called?
states
is both a symbolic representation of a logical operation and, when used in digital electronics, it can be an actual circuit in hardware.
logic gates
who made Boolean Algebra
George Boole
the inverse (NOT) of a conjunction (AND) is logically equivalent to the disjunction (OR) of two inverses (NOT).
De Morgan’s Theorem
is a way to see all possible conditions for the variables in a logical expression and to chart the results.
truth table
are symbols that can directly replace an expression in Boolean arithmetic.
Logic gates
what do you call when you connect multiple gates together?
combined logic system or combinatorial logic.
uses the software approach to generate the control signals.
microprogrammed control unit
The generation of the control signals is determined with the help of the program. This program is stored in the special memory of the processor which is smaller and faster. This memory is termed as? and the program is termed as the?
microprogram memory or control store
microprogram
The block diagram of the microprogrammed control unit is comprised of the components like:
- instruction registers
- microprogrammed/microinstruction address generator
- microprogram counter
- control signals
holds a machine instruction that is currently being executed. It holds the currently queued instruction for use.
Instruction register
determines the address sequence that is read from control memory.
microprogrammed address generator
is used to cycling the sequence of control.
microprogram counter
is the part of a CPU’s control unit that stores the CPU’s microprogram.
control store
a device that generates addresses in a microprogram.
microsequencer
A control store implementation whose contents are unalterable is known as a
Read Only Memory or Read Only Storage
one whose contents are alterable is known as a
Writable Control Store.
are used to identify the nature of operation
control signals
There are 3 control signals that are available in 8085 microprocessors
- RD (Read)
- WR (Write)
- ALE (Address Latch Enable)
When the pulse goes high, it indicates
when the pulse goes low, it indicates
address
data
uses a sequence of micro-instruction in micro-programming language.
Microprogrammed Control Unit
is the measurement of the length of time that data is being worked on by the processor and is used as an indicator of how much processing is required for a process or how CPU intensive a process or program is.
CPU time
are the output of learning and processing block, which are sent to different output interfaces to produce desired output in the real physical world.
control signals
There are 2 types of Micro-instructions based on the control word stored in Control Memory (CM):
- Horizontal
- Vertical
is where the control signals are represented in the decoded binary format that is 1 bit/CS.
Horizontal Micro-instruction
The control signals are represented in the encoded binary format.
Vertical Micro-instruction
Control Unit Circuit Design can be done in 2 different ways:
- Hardware Control Circuit
- Microprogram Control Unit
is used to handle the address transferred to the memory unit, and this can be handled either using a bus approach or direct input declaration for the memory.
Control Memory Address Register (CMAR)
is a combinational logic circuit that is used to change the code into a set of signals. It is the reverse process of an encoder
decoder
is a term, symbol, or name used to define or specify a computing function.
mnemonic