eece416 microcomputer fundamentals & design · `“blueprint and functional description of...

89
1 EECE416 Microcomputer Fundamentals & Design Computer Architecture Dr. Charles Kim Howard University

Upload: trinhbao

Post on 14-Apr-2018

223 views

Category:

Documents


8 download

TRANSCRIPT

Page 1: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

1

EECE416 Microcomputer Fundamentals & Design

Computer Architecture

Dr. Charles Kim

Howard University

ckim
Typewritten Text
WWW.MWFTR.COM/416F15.html Dr. Charles Kim
Page 2: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

2

Page 3: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

3

Page 4: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

4

“Computer Architecture”Computer Architecture

Art of selecting and interconnecting hardware components to create functional unit (or computer)2 points of view⌧Instruction Set architecture (ISA):

• the code that a CPU reads and acts upon. It is the machine language (or assembly language), including the instruction set, word size, memory address modes, processor registers, and address and data formats

• Interface between H/W and S/W• programmers’ point of view

⌧Microarchitecture (or computer organization): • describes the data paths, data processing elements and data storage

elements, size of cache, and describes how they should implement the ISA

• Optimization• Power Management• system designers’ point of view.

Analogy: ⌧House (rooms) – views of builders and residents⌧Car – views of manufacturers (or mechanics) and drivers

Page 5: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

5

Micro-ArchitectureComputer System

CPU (with PC, Register, SR) + Memory

Micro-Architecture:“conceptual design and fundamental operational structure of a computer system”“blueprint and functional description of requirements and design implementationsof a computer”focusing on the way the

CPU performs and accesses memory.

Page 6: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

6

Micro-Architecture•ALU (Arithmetic Logic Unit)

• Fundamental building block of CPU

• Binary Full Adder

Page 7: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

7

Microprocessor Bus

Page 8: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

8

Architecture by CPU+MEM organizationPrinceton (or von Neumann) Architecture

MEM contains both Instruction and DataVon Neumann Bottleneck –CPU < MemoryCache

Harvard ArchitectureData MEM and Instruction MEMHigher Performance – via PipelineBetter for DSPHigher MEM Bandwidth

Page 9: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Memory Price

9

Page 10: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Memory Price

10

Page 11: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

“Pipeline”?Instruction Pipeline

11

Page 12: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

12

Princeton Architecture

1.Step (A): The address for the instruction to be next executed is read into

2. Step (B): The controller "decodes" the instruction

3.Step (C): Following completion of the instruction, the controller provides the address, to the memory unit, at which the data result generated by the operation will be stored.

•CPU can be either reading an instruction or reading/writing data from/to the memory.

•Both cannot occur at the same time since the instructions and the data use the same bus system

Page 13: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

13

Harvard Architecture

1. CPU can both read an instruction and perform a data memory access at the same time. 2. Faster for a given circuit complexity because instruction fetches and data access do not contend for a single memory pathway.

Page 14: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

14

Architecture by Instructions and ExecutionsCISC (Complex Instruction Set Computer)

Variety of instructions for complex tasks directly to hardwareEasy to translate high-level language to assemblyComplex HardwareInstructions of varying length

RISC (Reduced Instruction Set Computer)Fewer and simpler instructionsEach instruction takes the same amount of timeLess complex hardwareHigh performance microprocessorsPipelined instruction execution (several instructions are executed in parallel)

Page 15: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

15

CISC

Architecture of prior to mid-1980’sIBM390, Motorola 680x0, Intel80x86

Basic Fetch-Execute sequence to support a large number of complex instructionsComplex decoding proceduresComplex control unitOne instruction achieves a complex task

Page 16: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

16

RISCFavorable changes for RISC

Caches to speed instruction fetches Dramatic memory size increases/cost decreasesBetter pipelining Advanced optimizing compilers

Characteristics of RISCInstructions are of a uniform lengthIncreased number of registers to hold frequently used variables (16 - 64 Registers)Central to High Performance Computing

Page 17: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

17

Processor Classification

Page 18: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

18

Intel inside?

Next PCs or Mobile Computing Devices

Smart phones⌧Apple Processors⌧ ARMs⌧QualcommMobile Devices – Smartphones, MP3, Digicam (on ARM)Run on Intel’s x86? --- Intel’s wish; what happened to Lumina?

Page 19: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

What’s inside?iPhone: 1GHz-A4 microprocessor, 256MB Samsung RAM,

19

Page 20: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

What’s inside?Samsung Galaxy

Samsung Exynos quad-core A9 processor1GB Memory Intel Wireless processorBroadcom Global Navigation Satellite System receiver

20

Page 21: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

What’s Inside?HTC

21

Page 22: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

What’s inside?Nokia Lumina

1.4GHz Qualcomm CPU, 512MB RAM, 16GB Storage,

22

Page 23: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

23

INTEL VS. ARM (“Advanced RISC Machine”)ARMs

No chip hardware – license only (powerful and variety of licensees) cell phones etcSoC device (CPU + I/O + Peripherals+ Memory + etc)

INTELDoes not want to License x86 (Lesson from AMD)New approach for SoC: Atom based X86 SoC

Recent Stride with “Intel Atom Inside”Main processor for Laptops and Netbooks and TabletsMotorola Phones: Razr

Page 24: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Intel Processor History

Page 25: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Processor Performance

25

Page 26: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Intel side – Graphical View

26

Page 27: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Intel 805XX Product Codes

Page 28: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Intel 805XX Product Codes

Page 29: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Intel 805XX Product Codes

Page 30: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Intel 805XX Product Codes

Page 31: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Intel 806XX Product Codes

Page 32: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Intel 806XX Product Codes

Page 33: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

New Intel Atom DE2i-150 Board

33

Page 34: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

DE2i-150 Kit

34

Page 35: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

DE2i-150 Kit

35

Page 36: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

What/How HU students did? An example

36

Page 37: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

37

Intel 386 - Datasheet

Page 38: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

38

Intel 386 - Datasheet

Page 39: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

39

Intel 386 - BriefAddress: A23- A1

BLE# and BHE# (“Byte Enable”)

Data: D15 – D0Control

Page 40: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Memory Size and Address

40

Page 41: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Review on Number Systems

41

Page 42: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Memory Size and Address 2

43

Page 43: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

44

Intel 386 - BriefAddress: A23- A1 (where is A0?)

BLE# and BHE# (“Byte Enable”)Data: D15 – D0Control

Page 44: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

45

386 Micro-Architecture

Page 45: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

46

Connecting with Memory, I/O, and Peripherals

Single Board ComputersProcessor BoardsKits

Page 46: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

47

Memory Interface

Page 47: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Memory InterfaceInterface between a processor and a (pair) of memory (of smaller than the maximum memory space)Where do we place the memory in the memory space? “MEMORY DECODING”How to access two MEM locations at the same time (for 16-bit Data bus)?

MEM --- Byte Access (8 bits)UDS and LDS --- MotorolaBLE and BHE --- Intel

48

Page 48: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

8-bit access

49

Page 49: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

16-bit accessWith backward compatibility with 8-bit access

50

Page 50: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

16-bit accessWith backward compatibility with 8-bit access

51

Page 51: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

32-bit access with backward compatibility?

52

Page 52: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

32-bit access with backward compatibility

53

Page 53: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Memory Address 8Address location (first and last addresses)?

54

Page 54: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Memory Address 8

55

ckim
Rectangle
Page 55: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Memory Address 8 ---?Design a Memory Decoder so that the 32Byte memory locates as depicted.

56

Page 56: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Memory Address 8 ---?Design a Memory Decoder so that the 32Byte memory locates as depicted.

57

ckim
Rectangle
Page 57: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Memory Address 16 – Address Space

58

Page 58: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Memory Address 16

59

ckim
Rectangle
Page 59: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Memory Address 16 -- ?Design a memory decoder for the depicted address segment.

60

Page 60: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Memory Address 16 -- ?Design a memory decoder for the depicted address segment.

61

ckim
Rectangle
Page 61: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

62

Memory Address DecodingHow Much Memory?

How Many Address Lines?⌧ 1K 10 lines⌧ 32K 15 lines⌧ 23 ADDR lines 8MB?

MEMORY PINOUTSAddress LinesData Lines“Defense” ports or “Gates”⌧/CS⌧/CE⌧/OE⌧/WE

Page 62: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

8-bit uP + MEM ExerciseuP has 224=24MB=16MB memory space: 000000 - FFFFFFMEM has 219=0.5MBLet’s place the MEM between $00000 -$7FFFFUp Addr MEM Addr: A18 – A0The left-over Addr lines in the uP: A23 –A19

This condition is used to open the MEMgate (namely, /CS)

63

Page 63: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

8-bit uP + MEM ExerciseuP has 224=24MB=16MB memory space: 000000 - FFFFFFMEM has 219=0.5MBLet’s place the MEM between $00000 - $7FFFFUp Addr MEM Addr: A18 – A0The left-over Addr lines in the uP: A23 – A19

This condition is used to open the MEM gate (namely, /CS)

64

Page 64: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

8-bit uP + MEM ExerciseNow, place 0.5MB size MEM between $280000 - $2FFFFF

65

Page 65: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

8-bit uP + MEM ExerciseNow, place 0.5MB size MEM between $280000 - $2FFFFF

66

Page 66: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

16-bit uP + MEMuP does not have A0

BHE (UDS) and BLE (LDS), instead.

uP Addr MEM AddrA19 – A1 (uP): A18 – A0 (MEM)Left-Over Addr (uP): A23- A20BHE and BLE controls which MEM(or ADDRESS LOCATION) to access⌧ BHE LOW: Upper MEM (upper or odd

address location)⌧ BLE LOW: Lower MEM (lower or even

address location)⌧ Both BHE amd BLE low: both

address locations

67

Page 67: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

16-bit uP + MEMuP does not have A0

BHE (UDS) and BLE (LDS), instead.

uP Addr MEM AddrA19 – A1 (uP): A18 – A0 (MEM)Left-Over Addr (uP): A23- A20BHE and BLE controls which MEM(or ADDRESS LOCATION) to access⌧ BHE LOW: Upper MEM (upper or odd

address location)⌧ BLE LOW: Lower MEM (lower or even

address location)⌧ Both BHE amd BLE low: both

address locations

68

Page 68: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

69

Memory Decoding

Q: 64K Word (or 128 KB) of RAM, with it’s starting address at $480000A: 64KB 16 lines each MEM

Range: $480000 - $49FFFFBHE and BLE for A0 line Enable Upper address lines CS for both MEM

Page 69: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

70

Memory Decoding -------- Name___________Q: 64K Word (or 128 KB) of RAMA: 64KB 16 lines each MEM

Range: $480000 - $49FFFF

Page 70: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

71

Memory DecodingQ: 64K Word (or 128 KB) of RAM, with it’s starting address at $480000A: 64KB 16 lines each MEM

Range: $480000 - $49FFFFUDS and LDS for A0 line Enable Upper address lines CS for both MEM

Page 71: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

72

Apple Macintosh ClassicCPU: 8MHz Motorola 68000Introduced in 1984Memory: 128KB (512KB in later version) RAM, 64KB ROM3.5” 400KB Floppy DiskApplication: MacWrite and MacPaintMouse9” B&W MonitorKeyboardSerial Port (DB-9)Printer PortAddressing: 24-bit

Page 72: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

73

Apple Macintosh ClassicCPU: 8MHz Motorola 68000Memory: 128KB (512KB in later version) RAM, 64KB ROM

Page 73: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

74

Apple Macintosh Circuit Diagram

Page 74: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

75

Memory Map (for Apple Macintosh)

Page 75: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

76

Apple Macintosh Circuit Diagram

Page 76: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Apple Macintosh MEM Decoding

77

Page 77: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Design for Apple Macintosh MEM Decoding

78

Page 78: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Apple Macintosh MEM Decoding

79

ckim
Rectangle
Page 79: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Design for Apple Macintosh MEM Decoding

80

ckim
Rectangle
ckim
Rectangle
Page 80: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

Decoder/Multiplexer

74138

81

Page 81: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

82

Memory Decoding with Byte/Word Access

Questions:1. Size of ROM2. Size of RAM3. Memory Map

Page 82: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

83

Memory Decoding with Byte/Word Access - SOLUTION

Questions:1. Size of ROM2. Size of RAM3. Memory Map

Page 83: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

84

Solution 2

ckim
Rectangle
Page 84: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

85

Can You Draw a Memory Map of this?

Page 85: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

86

Can You Draw a Memory Map of this? - SOLUTION

Page 86: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

87

Solution 3

ckim
Rectangle
Page 87: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

88

Intel 80386 Memory – Decoding – QuizA pair of memory pack (High and Low bytes) -Eight (8) 64KB Memory ChipsAt each pack, each memory chip is SELECTED (/CS) by an output from U3 (High Byte) and U4 (Low Byte), which are enabled by the single output from U2.Question: Find the address range of the second chip of the pair of memory pack. (Green Mark)Ignore MWTC and MRDC, M/IO lines (they are for Write, Read, Memory or I/O operations, respectively)

Page 88: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

89

Intel 80386 Memory – Decoding – QuizFind the address range of the second chips of the memory pair. (Green Mark)Quiz: Individual Work – (Name: )

Page 89: EECE416 Microcomputer Fundamentals & Design · `“blueprint and functional description of requirements and design implementations of a computer” `focusing on the way the CPU performs

90

Intel 80386 Memory – Decoding – Class Activity

ckim
Rectangle
ckim
Rectangle