Main »

Homework 2

Tasks

edit SideBar

Homework 2

Due 02/16 - start of class
Weight: 20%

On this page... (hide)

  1.   1.  Problem 1
  2.   2.  Problem 2
  3.   3.  Problem 3
  4.   4.  Problem 4
  5.   5.  Problem 5
  6.   6.  Problem 6
  7.   7.  Problem 7
  8.   8.  Problem 8
  9.   9.  Problem 9
  10. 10.  Problem 10
  11. 11.  Problem 11
  12. 12.  Problem 12
  13. 13.  Problem 13
  14. 14.  Problem 14
  15. 15.  Problem 15

Problem 1 and 2 can be done alone or with a partner. Names must be included in the partner.txt file included in the supplied tar file.

Submitted:

  • Problems 1 & 2
    • Electronic submission of files: Submit to learn@UW, One submission per pair, titled hw2.tar

Not Submitted:

  • Problems 3 - 14:
    • These problems are optional and will not be graded but are recommended for a better understanding of the course material.

Important

Provided Files

  • A tarball is provided that includes testbenches and top level module definitions for all verilog problems: hw2.tar
  • Do not edit the provided *_hier.v files

Handin Instructions

  • You must maintain the directory structure that exists in the provided tar file, i.e. each problem has its own subdirectory titled hw2_[1,2]
  • All verilog files required to run your verilog must be in each problem's respective subdirectory. You may need to have copies of some files in each directory.
  • Vcheck output for all modules you have written.
  • A legible schematic.pdf file must be in each problem's respective subdirectory with the schematics you drew.
    • Any solution without a corresponding schematic drawing will NOT be graded
    • A scanner is available for general use in Wendt Library
  • The partner.txt file at the top level of the tarball must contain the names of yourself and your partner.
  • Submit only this tar file named hw2.tar - only one partner needs to submit the file

1.  Problem 1

Design a 16-bit barrel shifter with the following interface. Consult lecture notes for barrel shifter design.

Inputs:

  • [15:0]In - 16 bit input operand value to be shifted
  • [3:0]Cnt - 4 bit amount to shift (number of bit positions to shift)
  • [1:0]Op - shift type, see encoding in table below

Output:

  • [15:0]Out - 16 bit output operand
OpcodeOperation
00rotate left
01shift left
10shift right arithmetic
11shift right logical

Before starting to write any verilog, you should do the following:

  1. Break down your design into sub-modules.
  2. Define interfaces between these modules
  3. Draw paper and pencil schematics for these modules (these will he handed in as scanned schematic.pdf file)
  4. Then start writing verilog

Verify the design using the testbench in the supplied tar file. For a simple walk-through of how to run the testbench and example outputs see the Homework 2 Demo page.


2.  Problem 2

This 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.

OpcodeFunctionResult
000rllrotate left
001sllshift left
010srashift right arithmetic
011srlshift right logical
100ADDA+B
101ORA OR B
110XORA XOR B
111ANDA AND B

The external interface of the ALU should be:

Inputs

  • A[15:0], B[15:0] - Data input lines A and B (16 bits each.)
  • Cin - A carry-in for the LSB of the adder.
  • Op(2:0) - The OP code (3 bits.) The OP code determines the operation to be performed. The opcodes are shown in the Table above.
  • invA - An invert-A input (active high) that causes the A input to be inverted before the operation is performed.
  • invB - An invert-B input (active high) that causes the B input to be inverted before the operation is performed.
  • sign - A signed-or-unsigned input (active high for signed) that indicates whether signed or unsigned arithmetic to be performed for ADD function on the data lines. (This affects the Ofl output.)

Outputs

  • Out(15:0) - Data out (16 bits.)
  • Ofl - (1 bit) This indicates high if an overflow occurred.
  • Zero - (1 bit) This indicates that the result is exactly zero.

Other assumptions:

  • You can assume 2's complement numbers.
  • In case of logic functions, Ofl is not asserted (i.e. kept logic low).

Top level module definitions and a testbench is included in the supplied tar file.

Simulate and verify your design using the supplied testbench or create one yourself to test any of your submodules. You must reuse the shift unit designed in Problem 1.

Again, before starting to write any verilog, you should do the following:

  1. Break down your design into sub-modules.
  2. Define interfaces between these modules
  3. Draw paper and pencil schematics for these modules (these will he handed in as schematic.pdf file)
  4. Then start writing verilog

The remaining problems will not be graded but are recommended for better understanding of the course material.

3.  Problem 3

Do problem 1.3 from textbook

4.  Problem 4

Do problem 1.4 from textbook

5.  Problem 5

Do problem 2.1 from textbook

6.  Problem 6

Do problem 2.2 from textbook

7.  Problem 7

Do problem 2.3 from textbook

8.  Problem 8

Do problem 2.14 from textbook

9.  Problem 9

Do problem 2.15 from textbook

10.  Problem 10

Do problem 2.16 from textbook

11.  Problem 11

Do problem 2.17 from textbook

12.  Problem 12

Do problem 2.18.1 to 2.18.3 from textbook

13.  Problem 13

Do problem 2.19.1 to 2.19.3 from textbook

14.  Problem 14

Do problem 2.25.1 to 2.25.2 from textbook

15.  Problem 15

Do problem 2.26.1 to 2.26.3 from textbook


Page last modified on February 14, 2016, visited times

Edit - History - Print - Recent Changes (All) - Search