CS552 Course Wiki: Spring 2017 | Main »
Homework 3 |
Tasks |
Homework 3 Due 02/28 Problem 1, 2 and 3 must be done with your project partner. Names must be included in the partners.txt file included in the supplied tar file. Submitted:
Not Submitted:
Overview
Provided Files
Handin Instructions
Getting started
Problem 1Using Verilog, design an 8 -by -16- bit register file. See the verilog interface below. It has one write port, two read ports, three register select inputs (two for read and one for write,) a write enable, a reset and a clock input. All register state changes occur on the rising edge of the clock. As always, your basic building block must be the D-flipflop given in the Homework modules provided page. The read ports should be all combinational logic. Do not use tri-state logic in your design. Design this register file such that changing the width to 32-bit or 64-bit is straightforward The read and write data ports are 16 bits each. The select inputs (read and write) are 3 bits each. When the write enable is asserted (high) the selected register will be written with the data from the write port. The write occurs on the next rising clock edge; write data cannot flow through to a read port during the same cycle. There is no read enable; data from the selected registers will always appear on to the corresponding read ports. The reset signal is synchronous and when asserted (active high), resets all the register values to 0. You must use a hierarchical design. Design a 16-bit register first, and then put 8 of them together with additional logic to build the register file. Do not make any changes to the provided Testbench instructions You must verify your design using the testbench in the supplied tar file. Run the testbench in your hw3_1 directory using the command The testbench for this problem (rf_bench.v) generates a random set of input signals to your module in each cycle, and compares outputs from your module with outputs that are expected from a perfect register file implementation. If there are no errors in your design you will see a "TEST PASSED" message. If the testbench failed with a "TEST FAILED" message, look for error messages like "ERRORCHECK: Incorrect read data in cycle <cycle_number>" in the testbench output. Above each of these error messages you will see the inputs to your module, your outputs and the expected outputs for that cycle which can help you debug. Problem 2Using Verilog, write, compile and simulate a six state saturating counter. The counter should take as input a clock and a reset line ( The If Do not make any changes to the provided Testbench instructions You must verify your design using the testbench in the supplied tar file. Run the testbench in your hw3_2 directory using the command The testbench for this problem (sc_bench.v) randomly asserts If there are no errors in your design you will see a "TEST PASSED" message. If the testbench failed with a "TEST FAILED" message, look for error messages like "ERRORCHECK: ctr_rst = xx : out = xx : expected_out = xx" in the testbench output. These lines show the input to your module ( Problem 3 Part (a)In Verilog, create a register file that includes internal bypassing so that results written in one cycle can be read during the same cycle. Do this by writing an outer "wrapper" module that instantiates your existing (unchanged) register file module; your new module will just add the bypass logic. The list of inputs and outputs of the outer module should be the same as that of the inner module. Do not make any changes to the provided Testbench instructions You must verify your design using the testbench in the supplied tar file. Run the testbench in your hw3_3 directory using the command The testbench for this problem (rf_bypass_hier_bench.v) generates a random set of input signals to your module in each cycle, and compares outputs from your module with outputs that are expected from a perfect register file bypass implementation. If there are no errors in your design you will see a "TEST PASSED" message. If the testbench failed with a "TEST FAILED WITH xx ERRORS" message, look for error messages like "ERRORCHECK: Read data incorrect in cycle <cycle_number>" in the testbench output. Above each of these error messages you will see the inputs to your module, your outputs and the expected outputs for that cycle which can help you debug. Problem 3 Part (b)Read the synthesis tutorial on the Synthesis page. Synthesize your new register file (in the same Synthesis will create the synth directory which will include rf_bypass.syn.v, area report, timing report, etc. Do not delete this directory - it must be included in your submission. Make sure that in the area report no cell has an area of zero The remaining problems will not be graded but are recommended for better understanding of the course material. Problem 4Do problem 4.7 Problem 5Do problems 4.8 Problem 6Do problem 4.9 Problem 7Do problems 4.1.1 to 4.1.3 in page 357 of textbook. For 4.1.1, In addition to the control signals RegWrite, ALU operation, MemWrite, MemRead and Branch, you should also report the control signals of the following two control signals:
Problem 8Consider a single-cycle computer design such as the one in Figure 4.15 of text (page 263). Assume a MIPS-like instruction set. Suppose you had just completed such a design, and now the compiler group has come to you with a small list of additional instructions they would like you to add. How would you respond? Order the list from easiest to most difficult to add, based on the number of things that would have to change in the datapath; briefly indicate for each one what those changes would be.
Problem 9For this problem, you do not need to use mentor or Verilog; just draw the designs (neatly!) on paper. Now, calculate the delay at output S5 of the carry-select adder. To do this, you will need to know the gate design of the full adder and the 2:1 mux (see below). You will also need to know the delay function: Problem 9This problem does not require verilog implementation. You should work to create a neatly drawn schematic. Consider the division algorithm in Figure 3.10 (page 238) of the text and the accompanying high level diagram in Figure 3.9 (page 237). For this problem create a working and detail schematic with hierarchical design implementing this bit-wise divider. Simply reproducing Figure 3.9 will earn you negative points :-) If you feel there is ambiguity in the problem specification, make reasonable assumptions and start your answer stating all your assumptions.
|
Page last modified on March 16, 2017, visited times |