CS552 Course Wiki: Spring 2017 | Main »
Homework 2 |
Tasks |
Homework 2 Due 02/19 Use this cover-sheet as the first page of your homework. Download the word doc, fill your name and print. Or in hand write the details in big big letters. word doc, [pdf On this page... (hide)
Problem 1 and 2 alone can be done with your project partner. (Form teams by 8th February). Email me and the TA the group members and a unique team name. Your email should have the subject line: CS552 group creation. Also, update the course wiki's Project Teams page. Submission:
Important
1. Problem 1Design a 16-bit barrel shifter with the following interface. Consult lecture notes for barrel shifter design. Inputs:
Output:
You should use Verilog to do this homework.
Before starting to write any verilog, I suggest the following:
Verify the design using representative inputs. What to submit:
1.1 Electronic submission instructionsSee HandinInstructions page. 2. Problem 2This problem should also be done in Verilog. Design a simple 16-bit ALU. Operations to be performed are 2's Complement ADD, bitwise-OR, bitwise-XOR, bitwise-AND, and the shift unit from problem 1. In addition, it must have the ability to invert either of its data inputs before performing the operation and have a C0 input (to enable subtraction). Another input line also determines whether the arithmetic to be performed is signed or unsigned . Use a carry look-ahead adder (CLA) in your design. (Hint: First design a 4-bit CLA. Then use blocks of this CLA for designing the 16-bit CLA.) For all the shift and rotate operations, assume the number to shift is input A to ALU and the shift/rotate amount is bits [3:0] of input B.
The external interface of the ALU should be: Inputs
Outputs
Other assumptions:
Use hierarchical design and simulate each block by itself before you try the complete design. You must reuse the shift unit designed in Problem 1. What to submit:
2.1 Electronic submission instructionsSee HandinInstructions page. 3. Problem 3Do problems 1.3.1 to 1.3.3 in page 59 of textbook. 4. Problem 4Do problems 1.4.1 to 1.4.3 in page 60 of textbook. 5. Problem 5Do problems 1.4.4 to 1.4.6 in page 61 of textbook. 6. Problem 6Do problems 1.6.1 to 1.6.3 in page 62 of textbook. 7. Problem 7Do only part a) of problems 1.10.1 to 1.10.3 in page 66 of textbook. 8. Problem 8Do problems 2.10.1 to 2.10.3 in page 188 of textbook. 9. Problem 9Translate the following code from C into MIPS instructions. Assume that the variables p, q, r, and s are defined as 32-bit integers in a C program. p = q - r; s = p + r; q = p - s; Assume p is stored in $t1, q is stored in $t2, r is in $t3, and s is in $t4. 10. Problem 10Do problems 2.13.1 to 2.13.3 in page 190 of textbook. Note: for 2.13.1, use the following instruction sequence instead of the sequence in the textbook: sll $t2, $t0, 4 or $t2, $t2, $t1 11. Problem 11Do only part b) of problems 2.14.1 to 2.14.3 in page 191 of textbook. The question in the text book has some ambiguity. See clarifications below For register $t0, here are the bit fields: 0 to j-1 [j bits] j to i-1 [i-j bits] i to 31 [32-i bits] (The diagram in the textbook marks this field as 31-i bits wide. This is wrong. This field is 32-i bits wide) For register $t1, here are the bit fields: 0 to 13 [14 bits] 14 to 13+i-j [i-j bits] 14+i-j to 31 [18+j-i bits] 12. Problem 12Implement the following C code in MIPS: for (i=10; i != 0; i--) { a[4 * i] = b[2 * i] + i; } Assume that the base address of a[] is stored in $a0, and the base address of b[] is stored in $a1. Also, a and b are integer arrays. 13. Problem 13Do problems 2.39.1 to 2.39.3 in page 217 of textbook. |
Page last modified on January 28, 2016, visited times |