cpsc 321 computer architecture and engineering lecture 7 designing a multi-cycle processor

41
CPSC 321 Computer Architecture and Engineering Lecture 7 Designing a Multi-cycle Processor Adapted from the lecture notes of John Kubiatowicz (UCB)

Upload: viet

Post on 05-Feb-2016

87 views

Category:

Documents


0 download

DESCRIPTION

CPSC 321 Computer Architecture and Engineering Lecture 7 Designing a Multi-cycle Processor. Adapted from the lecture notes of John Kubiatowicz (UCB). Recap: A Single Cycle Datapath. Instruction. nPC_sel. Instruction Fetch Unit. Rd. Rt. . . . . Clk. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

CPSC 321Computer Architecture and Engineering

Lecture 7

Designing a Multi-cycle Processor

Adapted from the lecture notes of John Kubiatowicz (UCB)

Page 2: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Recap: A Single Cycle Datapath

32

ALUctr

Clk

busW

RegWr

3232

busA

32busB

55 5

Rw Ra Rb32 32-bitRegisters

Rs

Rt

Rt

RdRegDst

Extender

Mux

Mux

3216imm16

ALUSrc

ExtOp

Mux

MemtoReg

Clk

Data InWrEn

32Adr

DataMemory

32

MemWr

AL

U

InstructionFetch Unit

Clk

Equal

Instruction<31:0>

0

1

0

1

01

<21:25>

<16:20>

<11:15>

<0:15>

Imm16RdRtRs

nPC_sel

Page 3: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Recap: The “Truth Table” for the Main Control

R-type ori lw sw beq jumpRegDstALUSrcMemtoRegRegWriteMemWriteBranchJumpExtOpALUop (Symbolic)

1001000x

“R-type”

01010000

Or

01110001

Add

x1x01001

Add

x0x0010x

Subtract

xxx0001x

xxx

op 00 0000 00 1101 10 0011 10 1011 00 0100 00 0010

ALUop <2> 1 0 0 0 0 xALUop <1> 0 1 0 0 0 xALUop <0> 0 0 0 0 1 x

MainControl

op6

ALUControl(Local)

func

3

6

ALUop

ALUctr3

RegDstALUSrc

:

Page 4: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

The Big Picture: Where are We Now?

° The Five Classic Components of a Computer

° Today’s Topic: Designing the Datapath for the Multiple Clock Cycle Datapath

Control

Datapath

Memory

ProcessorInput

Output

Page 5: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Abstract View of our single cycle processor

° looks like a FSM with PC as state

PC

Nex

t PC

Reg

iste

rFe

tch ALU Reg

. W

rt

Mem

Acc

ess

Dat

aM

emInst

ruct

ion

Fetc

h

Res

ult S

tore

ALU

ctr

Reg

Dst

ALU

Src

ExtO

p

Mem

Wr

Equ

al

nPC

_sel

Reg

Wr

Mem

Wr

Mem

Rd

MainControl

ALUcontrol

op

fun

Ext

Page 6: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

What’s wrong with our CPI=1 processor?

° Long Cycle Time° All instructions take as much time as the slowest° Real memory is not as nice as our idealized memory

• cannot always get the job done in one (short) cycle

PC Inst Memory mux ALU Data Mem mux

PC Reg FileInst Memory mux ALU mux

PC Inst Memory mux ALU Data Mem

PC Inst Memory cmp mux

Reg File

Reg File

Reg File

Arithmetic & Logical

Load

Store

Branch

Critical Path

setup

setup

Page 7: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Reducing Cycle Time° Cut combinational dependency graph and insert register / latch° Do same work in two fast cycles, rather than one slow one° May be able to short-circuit path and remove some components

for some instructions!

storage element

Acyclic CombinationalLogic

storage element

storage element

Acyclic CombinationalLogic (A)

storage element

storage element

Acyclic CombinationalLogic (B)

Page 8: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Basic Limits on Cycle Time

° Next address logic• PC <= branch ? PC + offset : PC + 4

° Instruction Fetch• InstructionReg <= Mem[PC]

° Register Access• A <= R[rs]

° ALU operation• R <= A + B

PC

Nex

t PC

Ope

rand

Fetc

h Exec Reg

. Fi

le

Mem

Acc

ess

Dat

aM

emInst

ruct

ion

Fetc

h

Res

ult S

tore

ALU

ctr

Reg

Dst

ALU

Src

ExtO

p

Mem

Wr

nPC

_sel

Reg

Wr

Mem

Wr

Mem

Rd

Control

Page 9: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Partitioning the CPI=1 Datapath

° Add registers between smallest steps

° Place enables on all registers

PC

Nex

t PC

Ope

rand

Fetc

h Exec Reg

. Fi

le

Mem

Acc

ess

Dat

aM

em

Inst

ruct

ion

Fetc

h

Res

ult S

tore

ALU

ctr

Reg

Dst

ALU

Src

ExtO

p

Mem

Wr

nPC

_sel

Reg

Wr

Mem

Wr

Mem

Rd

Equ

al

Page 10: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Example Multicycle Datapath

° Critical Path ?

PC

Nex

t PC

Ope

rand

Fetc

h

Inst

ruct

ion

Fetc

h

nPC

_sel

IRRegFile E

xtA

LU Reg

. Fi

le

Mem

Acc

ess

Dat

aM

em

Res

ult S

tore

Reg

Dst

Reg

Wr

Mem

Wr

Mem

Rd

S

M

Mem

ToR

eg

Equ

al

ALU

ctr

ALU

Src

ExtO

p

A

B

E

Page 11: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Recall: Step-by-step Processor Design

Step 1: ISA => Logical Register Transfers

Step 2: Components of the Datapath

Step 3: RTL + Components => Datapath

Step 4: Datapath + Logical RTs => Physical RTs

Step 5: Physical RTs => Control

Page 12: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Step 4: R-type (add, sub, . . .)

° Logical Register Transfer

° Physical Register Transfers

inst Logical Register Transfers

ADDU R[rd] <– R[rs] + R[rt]; PC <– PC + 4

inst Physical Register TransfersIR <– MEM[pc]

ADDU A<– R[rs]; B <– R[rt]S <– A + BR[rd] <– S; PC <– PC + 4

Exe

c

Reg

. Fi

le

Mem

Acc

ess

Dat

aM

em

S

M

Reg

File

PC

Nex

t PC

IR

Inst

. Mem

Tim

e

A

B

E

Page 13: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Step 4: Logical immed

° Logical Register Transfer

° Physical Register Transfers

inst Logical Register Transfers

ORI R[rt] <– R[rs] OR ZExt(Im16); PC <– PC + 4

inst Physical Register TransfersIR <– MEM[pc]

ORI A<– R[rs]; B <– R[rt]S <– A or ZExt(Im16)R[rt] <– S; PC <– PC + 4

Exe

c

Reg

. Fi

le

Mem

Acc

ess

Dat

aM

em

S

M

Reg

File

PC

Nex

t PC

IR

Inst

. Mem

Tim

e

A

B

E

Page 14: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Step 4 : Load

° Logical Register Transfer

° Physical Register Transfers

inst Logical Register Transfers

LW R[rt] <– MEM[R[rs] + SExt(Im16)];

PC <– PC + 4inst Physical Register Transfers

IR <– MEM[pc]LW A<– R[rs]; B <– R[rt]

S <– A + SExt(Im16)M <– MEM[S]R[rd] <– M; PC <– PC + 4

Exe

c

Reg

. Fi

le

Mem

Acc

ess

Dat

aM

em

S

M

Reg

File

PC

Nex

t PC

IR

Inst

. Mem A

B

E

Tim

e

Page 15: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Step 4 : Store

° Logical Register Transfer

° Physical Register Transfers

inst Logical Register Transfers

SW MEM[R[rs] + SExt(Im16)] <– R[rt];

PC <– PC + 4

inst Physical Register TransfersIR <– MEM[pc]

SW A<– R[rs]; B <– R[rt]S <– A + SExt(Im16); MEM[S] <– B PC <– PC + 4

Exe

c

Reg

. Fi

le

Mem

Acc

ess

Dat

aM

em

S

M

Reg

File

PC

Nex

t PC

IR

Inst

. Mem A

B

E

Tim

e

Page 16: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Step 4 : Branch° Logical Register Transfer

° Physical Register Transfers

inst Logical Register Transfers

BEQ if R[rs] == R[rt]

then PC <= PC + 4+SExt(Im16) || 00

else PC <= PC + 4

Exe

c

Reg

. Fi

le

Mem

Acc

ess

Dat

aM

em

S

M

Reg

File

PC

Nex

t PC

IR

Inst

. Mem

inst Physical Register TransfersIR <– MEM[pc]

BEQ E<– (R[rs] = R[rt])if !E then PC <– PC + 4 else PC <–PC+4+SExt(Im16)||00

A

B

ETi

me

Page 17: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Alternative data-path (book): Multiple Cycle Datapath

° Minimizes Hardware: 1 memory, 1 adder

IdealMemoryWrAdrDin

RAdr

32

32

32Dout

MemWr32

AL

U

3232

ALUOp

ALUControl

Instruction Reg

32

IRWr

32

Reg File

Ra

Rw

busW

Rb5

5

32busA

32busB

RegWr

Rs

Rt

Mux

0

1

Rt

Rd

PCWr

ALUSelA

Mux 01

RegDst

Mux

0

1

32

PC

MemtoReg

Extend

ExtOp

Mux

0

132

0

1

23

4

16Imm 32

<< 2

ALUSelB

Mux

1

0

Target32

Zero

ZeroPCWrCond PCSrc BrWr

32

IorD

AL

U O

ut

Page 18: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Our Control Model

° State specifies control points for Register Transfer° Transfer occurs upon exiting state (same falling edge)

Control State

Next StateLogic

Output Logic

inputs (conditions)

outputs (control points)

State X

Register TransferControl Points

Depends on Input

Page 19: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Step 4 Control Specification for multicycle proc

IR <= MEM[PC]

R-type

A <= R[rs]B <= R[rt]

S <= A fun B

R[rd] <= SPC <= PC + 4

S <= A or ZX

R[rt] <= SPC <= PC + 4

ORi

S <= A + SX

R[rt] <= MPC <= PC + 4

M <= MEM[S]

LW

S <= A + SX

MEM[S] <= BPC <= PC + 4

BEQPC <= Next(PC,Equal)

SW

“instruction fetch”

“decode / operand fetch”

Exe

cute

Mem

ory

Writ

e-ba

ck

Page 20: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Traditional FSM Controller

State

6

4

11nextState

op

Equal

control points

state op condnextstate control points

Truth Table

datapath State

Page 21: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Step 5 (datapath + state diagram control)

° Translate RTs into control points° Assign states

° Then go build the controller

Page 22: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Mapping RTs to Control Points

IR <= MEM[PC]

R-type

A <= R[rs]B <= R[rt]

S <= A fun B

R[rd] <= SPC <= PC + 4

S <= A or ZX

R[rt] <= SPC <= PC + 4

ORi

S <= A + SX

R[rt] <= MPC <= PC + 4

M <= MEM[S]

LW

S <= A + SX

MEM[S] <= BPC <= PC + 4

BEQ PC <= Next(PC,Equal)

SW

“instruction fetch”

“decode”

imem_rd, IRen

ALUfun, Sen

RegDst, RegWr,PCen

Aen, Ben,Een

Exe

cute

Mem

ory

Writ

e-ba

ck

Page 23: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Assigning States

IR <= MEM[PC]

R-type

A <= R[rs]B <= R[rt]

S <= A fun B

R[rd] <= SPC <= PC + 4

S <= A or ZX

R[rt] <= SPC <= PC + 4

ORi

S <= A + SX

R[rt] <= MPC <= PC + 4

M <= MEM[S]

LW

S <= A + SX

MEM[S] <= BPC <= PC + 4

BEQPC <= Next(PC)

SW

“instruction fetch”

“decode”

0000

0001

0100

0101

0110

0111

1000

1001

1010

00111011

1100

Exe

cute

Mem

ory

Writ

e-ba

ck

Page 24: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

(Mostly) Detailed Control Specification (missing0)

0000 ?????? ? 0001 10001 BEQ x 0011 1 1 1 0001 R-type x 0100 1 1 1 0001 ORI x 0110 1 1 10001 LW x 1000 1 1 10001 SW x 1011 1 1 1

0011 xxxxxx 0 0000 1 0 x 0 x0011 xxxxxx 1 0000 1 1 x 0 x0100 xxxxxx x 0101 0 1 fun 10101 xxxxxx x 0000 1 0 0 1 10110 xxxxxx x 0111 0 0 or 10111 xxxxxx x 0000 1 0 0 1 01000 xxxxxx x 1001 1 0 add 11001 xxxxxx x 1010 1 0 11010 xxxxxx x 0000 1 0 1 1 01011 xxxxxx x 1100 1 0 add 11100 xxxxxx x 0000 1 0 0 1 0

State Op field Eq Next IR PC Ops Exec Mem Write-Backen sel A B E Ex Sr ALU S R W M M-R Wr Dst

R:

ORi:

LW:

SW:

-all same in Moore machine

BEQ:

Page 25: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Performance Evaluation

° What is the average CPI?• state diagram gives CPI for each instruction type• workload gives frequency of each type

Type CPIi for type Frequency CPIi x freqIi

Arith/Logic 4 40% 1.6

Load 5 30% 1.5

Store 4 10% 0.4

branch 3 20% 0.6

Average CPI:4.1

Page 26: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Controller Design° The state digrams that arise define the controller for an

instruction set processor are highly structured° Use this structure to construct a simple

“microsequencer” ° Control reduces to programming this very simple device

microprogramming

sequencercontrol

datapath control

micro-PCsequencer

microinstruction

Page 27: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Our Microsequencer

op-code

Map ROM

Micro-PC

Z I Ldatapath control

taken

Page 28: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Microprogram Control Specification

0000 ? inc 10001 0 load 1 1

0011 0 zero 1 00011 1 zero 1 10100 x inc 0 1 fun 10101 x zero 1 0 0 1 10110 x inc 0 0 or 10111 x zero 1 0 0 1 01000 x inc 1 0 add 11001 x inc 1 0 11010 x zero 1 0 1 1 01011 x inc 1 0 add 11100 x zero 1 0 0 1 0

µPC Taken Next IR PC Ops Exec Mem Write-Backen sel A B Ex Sr ALU S R W M M-R Wr Dst

R:

ORi:

LW:

SW:

BEQ

Page 29: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Overview of Control° Control may be designed using one of several initial representations. The choice of sequence control, and how logic is represented, can then be determined independently; the control can then be implemented with one of several methods using a structured logic technique.

Initial Representation Finite State Diagram Microprogram

Sequencing Control Explicit Next State Microprogram counter Function + Dispatch ROMs

Logic Representation Logic Equations Truth Tables

Implementation PLA ROM Technique

“hardwired control” “microprogrammed control”

Page 30: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Microprogramming (Maurice Wilkes)° Control is the hard part of processor design

° Datapath is fairly regular and well-organized° Memory is highly regular° Control is irregular and global

Microprogramming:

-- A Particular Strategy for Implementing the Control Unit of a processor by "programming" at the level of register transfer operations

Microarchitecture:

-- Logical structure and functional capabilities of the hardware as seen by the microprogrammer

Historical Note:

IBM 360 Series first to distinguish between architecture & organizationSame instruction set across wide range of implementations, each with different cost/performance

Page 31: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

“Macroinstruction” Interpretation

MainMemory

executionunit

controlmemory

CPU

ADDSUBAND

DATA

.

.

.

User program plus Data

this can change!

AND microsequence

e.g., Fetch Calc Operand Addr Fetch Operand(s) Calculate Save Answer(s)

one of these ismapped into oneof these

Page 32: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

sequencercontrol

micro-PC-sequencer:fetch,dispatch,sequential

DispatchROM

Opcode

Inputs

Microprogramming

° Microprogramming is a fundamental concept• implement an instruction set by building a very simple processor

and interpreting the instructions• essential for very complex instructions and when few register

transfers are possible• overkill when ISA matches datapath 1-1

-Code ROM

To DataPath

DecodeDecode

datapath control

microinstruction ()

Page 33: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Designing a Microinstruction Set

1) Start with list of control signals2) Group signals together that make sense (vs. random): called

“fields”3) Place fields in some logical order

(e.g., ALU operation & ALU operands first and microinstruction sequencing last)

4) To minimize the width, encode operations that will never be used at the same time

5) Create a symbolic legend for the microinstruction format, showing name of field values and how they set the control signals

• Use computers to design computers

Page 34: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

1&2) Start with list of control signals, grouped into fieldsSignal name Effect when deasserted Effect when asserted

ALUSelA 1st ALU operand = PC 1st ALU operand = Reg[rs]RegWrite None Reg. is written MemtoReg Reg. write data input = ALU Reg. write data input = memory RegDst Reg. dest. no. = rt Reg. dest. no. = rdMemRead None Memory at address is read,

MDR <= Mem[addr]MemWrite None Memory at address is written IorD Memory address = PC Memory address = SIRWrite None IR <= MemoryPCWrite None PC <= PCSourcePCWriteCond None IF ALUzero then PC <= PCSourcePCSource PCSource = ALU PCSource = ALUoutExtOp Zero Extended Sign Extended Si

ngle

Bit

Con

trol

Signal name Value Effect ALUOp 00 ALU adds 01 ALU subtracts 10 ALU does function code

11 ALU does logical OR ALUSelB 00 2nd ALU input = 4 01 2nd ALU input = Reg[rt] 10 2nd ALU input = extended,shift left 2 11 2nd ALU input = extended

Mul

tiple

Bit

Con

trol

Page 35: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

3&4) Microinstruction Format: unencoded vs. encoded fields

Field Name Width Control Signals Setwide narrow

ALU Control 4 2 ALUOpSRC1 2 1 ALUSelASRC2 5 3 ALUSelB, ExtOpALU Destination 3 2 RegWrite, MemtoReg, RegDstMemory 3 2 MemRead, MemWrite, IorDMemory Register 1 1 IRWritePCWrite Control 3 2 PCWrite, PCWriteCond, PCSourceSequencing 3 2 AddrCtlTotal width 24 15 bits

Page 36: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

5) Legend of Fields and Symbolic Names

Field Name Values for Field Function of Field with Specific ValueALU Add ALU adds

Subt. ALU subtractsFunc code ALU does function codeOr ALU does logical OR

SRC1 PC 1st ALU input = PCrs 1st ALU input = Reg[rs]

SRC2 4 2nd ALU input = 4Extend 2nd ALU input = sign ext. IR[15-0]Extend0 2nd ALU input = zero ext. IR[15-0] Extshft 2nd ALU input = sign ex., sl IR[15-0]rt 2nd ALU input = Reg[rt]

destination rd ALU Reg[rd] = ALUout rt ALU Reg[rt] = ALUout

rt Mem Reg[rt] = Mem Memory Read PC Read memory using PC

Read ALU Read memory using ALUout for addrWrite ALU Write memory using ALUout for addr

Memory register IR IR = MemPC write ALU PC = ALU

ALUoutCond IF ALU Zero then PC = ALUoutSequencing Seq Go to sequential µinstruction

Fetch Go to the first microinstructionDispatch Dispatch using ROM.

Page 37: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Quick check: what do these fieldnames mean?

Code Name RegWrite MemToReg RegDest00 --- 0 X X01 rd ALU 1 0 110 rt ALU 1 0 011 rt MEM 1 1 0

Code Name ALUSelB ExtOp000 --- X X001 4 00 X010 rt 01 X011 ExtShft 10 1100 Extend 11 1111 Extend0 11 0

Destination:

SRC2:

Page 38: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Specific SequencerSequencer-based control unit

• Called “microPC” or “µPC” vs. state registerCode Name Effect 00 fetch Next µaddress = 0 01 dispatch Next µaddress = dispatch ROM 10 seq Next µaddress = µaddress + 1

ROM:

Opcode

microPC

1

µAddressSelectLogic

Adder

ROM

Mux

0012

R-type 000000 0100BEQ 000100 0011ori 001101 0110LW 100011 1000SW 101011 1011

Page 39: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Microprogram it yourself!

Label ALU SRC1 SRC2 Dest. Memory Mem. Reg. PC Write SequencingFetch: Add PC 4 Read PC IR ALU Seq

Page 40: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Microprogramming Pros and Cons

° Ease of design° Flexibility

• Easy to adapt to changes in organization, timing, technology• Can make changes late in design cycle, or even in the field

° Can implement very powerful instruction sets (just more control memory)

° Generality• Can implement multiple instruction sets on same machine.• Can tailor instruction set to application.

° Compatibility• Many organizations, same instruction set

° Costly to implement° Slow

Page 41: CPSC 321 Computer Architecture and Engineering Lecture 7  Designing a Multi-cycle Processor

Summary° Microprogramming is a fundamental concept

• implement an instruction set by building a very simple processor and interpreting the instructions

• essential for very complex instructions and when few register transfers are possible

• Control design reduces to Microprogramming ° Design of a Microprogramming language

1. Start with list of control signals2. Group signals together that make sense (vs. random): called “fields”3. Place fields in some logical order (e.g., ALU operation & ALU

operands first and microinstruction sequencing last)4. To minimize the width, encode operations that will never be used at

the same time5. Create a symbolic legend for the microinstruction format, showing

name of field values and how they set the control signals