Starting from:

$30

Computer Organization and Assembly Language Programming Homework #1

ECE 375
Computer Organization and Assembly Language Programming

Homework #1
[15 pts]
1- Explain the meaning of each term in the list below. Be sure that you describe how each item is used within the
pseudo-computer discussed in class.
(a) Operation code (opcode)
(b) ALU
(c) Effective Address
(d) Program Counter (PC)
(e) Internal Data Bus
[15 pts]
2- Consider a CPU with 1-address format that has a memory unit with a capacity of 1K (K = 1024) words and
supports 32 instructions. The instruction word is divided into three parts: opcode (Opcode) field, indirect
addressing mode (I) bit, and an address (Address) field. For your information, given an address, indirect
addressing is where
• If I-bit = 0, the operand is located in M[address].
• If I-bit = 1, the operand is located in M[M[address]].
Draw the instruction word format indicating the number of bits and the function of each field.
[24 pts]
3- For the pseudo-CPU shown in Figure 3.9 in the textbook, state whether or not each of the following
microoperations can be performed in a single clock cycle. Be sure to provide an explanation for each answer.
Assume PC and MAR each contain 12 bits, AC and MDR each contain 16 bits, and IR is 4 bits. You may
assume that the AC register is connected as shown in the diagram below.
(a) MAR ← AC, MDR ← MAR
(b) IR ← MDR, MAR ← MDR
(c) MAR ← MDR, MDR ← M(MAR)
(d) MDR ← AC + 1
(e) AC ← MDR, PC ← PC + 1
(f) PC ← PC + AC
[24 pts]
4- Consider the following hypothetical 1-address assembly instruction called “Store Accumulator Indirect with
Post-increment” of the form
STA (x)+ ; M(M(x)) ← AC, M(x) ← M(x)+1
Suppose we want to implement this instruction on the pseudo-CPU discussed in class augmented with a
temporary register TEMP (as shown in the diagram below). An instruction consists of 16 bits: A 4-bit opcode
and a 12-bit address. All operands are 16 bits. PC and MAR each contain 12 bits. AC, MDR, and TEMP each
contain 16 bits, and IR is 4 bits. Give the sequence of microoperations required to implement the Execute cycle
(Fetch cycle is given below) for the above STA (x)+ instruction. Your solution should result in exactly 8
microoperations for the execute cycle. Assume PC is currently pointing to the STA (x)+ instruction and only PC
and AC have the capability to increment/decrement themselves.
Fetch Cycle
Step 1: MAR ←PC;
Step 2: MDR ←M(MAR), PC ← PC+1 ; Read inst. & increment PC
Step 3: IR ← MDRopcode, MAR← MDRaddress
[22 pts]
5- Based on the initial register and data memory contents shown below (represented in hexadecimal), show how
these contents are modified (in hexadecimal) after executing each of the following AVR assembly instructions.
Do not be concerned about what happens to the Status Register (SREG) after the operation. Instructions are
unrelated.
(i) ldi r27, 85
(ii) ror r3
(iii) adc r2, r1
(iv) sts $0007, r28
(v) sbiw XH:XL, 2

More products