Microprocessor PDF
Microprocessor PDF
Microprocessor PDF
Introduction
Microprocessor/Microcontroller
A microprocessor - also known as a CPU or central processing unit - is a complete computation engine that is fabricated on a single chip. The first microprocessor was the Intel 4004, introduced in 1971. The 4004 was not very powerful - all it could do was add and subtract, and it could only do that 4 bits at a time. But it was amazing that everything was on one chip. Prior to the 4004, engineers built computers either from collections of chips or from discrete components (Transistors and such). The 4004 powered one of the first portable electronic calculators. (excerpts from
How Microprocessors Work by Marshall Brain)
Microprocessor/Microcontroller
The first microprocessor to make it into a home computer was the Intel 8080, a complete 8-bit computer on one chip, introduced in 1974. The first microprocessor to make a real splash in the market was the Intel 8088, introduced in 1979 and incorporated into the IBM PC (which first appeared around 1982). If you are familiar with the PC market and its history, you know that the PC market moved from the 8088 to the 80286 to the 80386 to the 80486 to the Pentium to the Pentium II to the Pentium III to the Pentium 4. All of these microprocessors are made by Intel and all of them are improvements on the basic design of the 8088. The Pentium 4 can execute any piece of code that ran on the original 8088, but it does it about 5,000 times faster! (excerpts from How Microprocessors Work by Marshall Brain)
Microprocessor/Microcontroller
:
Microprocessor/Microcontroller
This is about as simple as a microprocessor gets. This microprocessor has: An address bus (that may be 8, 16 or 32 bits wide) that sends an address to memory A data bus (that may be 8, 16 or 32 bits wide) that can send data to memory or receive data from memory An RD (read) and WR (write) line to tell the memory whether it wants to set or get the addressed location A clock line that lets a clock pulse sequence the processor A reset line that resets the program counter to zero (or whatever) and restarts execution Let's assume that both the address and data buses are 8 bits wide in this example.
Microprocessor/Microcontroller
Here are the components of this simple microprocessor: Registers A, B and C are simply latches made out of flip-flops. The address latch is just like registers A, B and C. The program counter is a latch with the extra ability to increment by 1 when told to do so, and also to reset to zero when told to do so.
Microprocessor/Microcontroller
Microprocessor Instructions Even the incredibly simple microprocessor shown in the previous example will have a fairly large set of instructions that it can perform. The collection of instructions is implemented as bit patterns, each one of which has a different meaning when loaded into the instruction register. Humans are not particularly good at remembering bit patterns, so a set of short words are defined to represent the different bit patterns. This collection of words is called the assembly language of the processor. An assembler can translate the words into their bit patterns very easily, and then the output of the assembler is placed in memory for the microprocessor to execute.
Microprocessor/Microcontroller
Here's the set of assembly language instructions that the designer might create for the simple microprocessor in our example: LOADA mem - Load register A from memory address LOADB mem - Load register B from memory address CONB con - Load a constant value into register B SAVEB mem - Save register B to memory address SAVEC mem - Save register C to memory address ADD - Add A and B and store the result in C SUB - Subtract A and B and store the result in C MUL - Multiply A and B and store the result in C DIV - Divide A and B and store the result in C
Microprocessor/Microcontroller
COM - Compare A and B and store the result in test JUMP addr - Jump to an address JEQ addr - Jump, if equal, to address JNEQ addr - Jump, if not equal, to address JG addr - Jump, if greater than, to address JGE addr - Jump, if greater than or equal, to address JL addr - Jump, if less than, to address JLE addr - Jump, if less than or equal, to address STOP - Stop execution
Microprocessor/Microcontroller
An opcode (operation code) is the portion of a machine language instruction that specifies the operation to be performed. Their specification and format are laid out in the instruction set architecture of the processor in question (which may be a general CPU or a more specialized processing unit). Apart from the opcode itself, an instruction normally also has one or more specifiers for operands (i.e. data) on which the operation should act, although some operations may have implicit operands, or none at all.
Microprocessor/Microcontroller
Assembly language, or just assembly, is a lowlevel programming language, which uses mnemonics, instructions and operands to represent machine code. This enhances the readability while still giving precise control over the machine instructions.
ROM-8KB
PULSE ACCUMULAT OR O C 1
RAM-256 bytes
PERIODIC INTERRUPT
EEPROM-512 bytes
PE7 PE6 PE5 PE4 PE3 PE2 PE1 PE0 VREFH VREFL RESET XIRQ IRQ
( VPPBULK )
PAI OC2 OC3 OC4 OC5 IC1 IC2 IC3 SS SCK MOSI MISO T xD
PORT A
PA7 PA6 PA5 PA4 PA3 PA2 PA1 PA0 PD5 PD4 PD3 PD2 PD1 PD0
DATA DIRECTION
PORT D
RxD
OSCILLATOR
PORT B
PORT C
P P P P P P P P C C C C C C C C 7 6 5 4 3 2 1 0 S T R B S T R A
PARALLEL I/O
MODE SELECT
SINGLE CHIP
VDD VSS
POW ER
A A A A A A A A 1 1 1 1 1 1 9 8 5 4 3 2 1 0
A A A A A A A A D D D D D D D D 7 6 5 4 3 2 1 0
R/W A S
EXPAND
Figure 1.2 68HC11A8 block diagram (redrawn with permis sion of Motorola)
7 15 15 15 15 15
Accumulator A
0 7
Accumulator B
0 A:B 0 D 0 IX 0 IY 0 SP 0 PC
Double Accumulator D Index Register IX Index Register IY Stack pointer Program Counter S X H I N Z V
C CCR Carry Overflow Zero Negative I interrupt mask Half-Carry (from bit 3) X Interrupt Mask Stop Disable
Microprocessor/Microcontroller
Memory Addressing
Memory consists of addressable locations A memory location has 2 components: address and contents address contents
Data transfer between CPU and memory involves address bus and data bus address bus lines CPU data bus lines Figure 1.5 Data transfer between CPU and memory memory
ADDRESSING MODES
Operands needed in an instruction are specified by one of the 6 addressing modes
Immediate mode Direct mode Extended mode Indexed mode Inherent mode Relative mode
Microprocessor/Microcontroller
Microprocessor/Microcontroller
Immediate mode
The actual operand is contained in the byte or bytes immediately following the instruction opcode
LDAA #22 ADDA #@32 LDD #1000 Note that the (#) is a critical assembler directive!
Microprocessor/Microcontroller
Direct mode
A one-byte value is used as the address of a memory operand (located in on-chip SRAM)
Extended mode
A two-byte value is used as the address of a memory operand
Indexed mode
The sum of one of the index registers and an 8-bit value is used as the address of a memory operand
Inherent mode
Operands are implied by the instruction No address information is needed
Relative mode
Used in branch instructions to specify the branch target Specified using either a 16-bit value or a label (preferred)
<opr> Load Accumulator A <opr> Load Accumulator B <opr> Load Double Accumulator D <opr> Load Index Register X <opr> Load Index Register Y <opr> Load Stack Pointer <opr> can be immediate, direct, extended, or index mode
ABA ABX ABY ADDA <opr> ADDB <opr> ADDD <opr> ADCA <opr> ADCB <opr>
<opr> is specified using immediate, direct, extended, or index mode
SBA SUBA SUBB SUBD SBCA SBCB Examples SUBA SUBA SUBA SUBD
<addr> <addr> <addr> <addr> <addr> <addr> <addr> can be direct, extended, or index mode
Microprocessor/Microcontroller
Microprocessor/Microcontroller
machine code assembly instruction format
01 86 96 C6 D6 CC DC 8B 9B CB DB C3 D3 97 D7 DD
NOP LDAA IMM LDAA DIR LDAB IMM LDAB DIR LDD IMM LDD DIR ADDA IMM ADDA DIR ADDB IMM ADDB DIR ADDD IMM ADDD DIR STAA DIR STAB DIR STD DIR
Microprocessor/Microcontroller
The 68HC11 Instruction Execution Cycle - Perform a sequence of read cycles to fetch instruction opcode byte and address information. - Optionally perform read cycle(s) required to fetch the memory operand. - Perform the operation specified by the opcode. - Optionally write back the result to a register or a memory location.
B6 20 00 BB 30 00 B7 20 00
Step 3. CPU performs two read cycles to obtain the extended address $2000 from locations $C001 and $C002. At the end the value of PC is incremented to $C003
Memory contents Address Address bus $C001 $B6 $20 $00 CPU $BB $30 $00 $20 Data bus $B7 $20 $00 Before $C001 PC $C000 $C001 $C002 $C003 $C004 $C005 $C006 $C007 $C008 After first read $C002 PC After second read $C003 PC $00 Data bus CPU Address bus $C002 $B6 $20 $00 $BB $30 $00 $B7 $20 $00 $C000 $C001 $C002 $C003 $C004 $C005 $C006 $C007 $C008 Memory contents Address
Step 4. The CPU performs another read to get the contents of the memory location at $2000, which is $19. The value $19 will be loaded into accumulator A.
Address
$2000
$19 $2000
CPU
. . .
$37 $3000
The End
Microprocessor/Microcontroller