ECEN 651 Laboratory Exercise 4

$30.00

Category: You will Instantly receive a download link for .zip solution file upon Payment

Description

5/5 - (1 vote)

Objective

The objective of lab this week is to complete the design of ALU module and ALU Control
module of a single-cycle processor.

Procedure

1. Design the ALU. The Arithmetic Logic Unit (ALU) in MIPS is a combinational logic
module that produces an arithmetic or logic result from two input operands based on the
control signals input to the module. Figure 1 provides the port interface diagram of the
ALU you will build in this lab.

The two operand buses, BusA and BusB, are each 32-bits
wide, while the control bus is 4-bits wide. The outputs from the ALU module include a
32-bit result bus, BusW, and a Zero signal, which is HIGH when the result equals zero.
Please note that this ALU does not provide support for arithmetic exceptions; however,
we will fix this in later labs.

The ALU can be thought of as combination of arithmetic and
logic blocks, each sharing the same inputs, such that the outputs of each of the blocks are
multiplexed to create the final result. In this illustration, the ALU control signals act as
the selection lines of the multiplexer.
Figure 1: ALU port interface

(1) Write a Verilog module to implement the ALU discussed above. Use the following
module interface:
module ALU(BusW, Zero, BusA, BusB, ALUCtrl);

Helpful Hints:
• Use Figure 2 in conjunction with the MIPS reference card on the laboratory website
as a guide.
• Your code should make use of the case statement.

• Since exceptions are not being supported initially, ADD and ADDU are identical
operations. The same goes for SUB and SUBU.

• SLT must compare 2 two’s complement numbers. This can be done by first negating
the sign bits of the two operands and then performing an unsigned comparison
Figure 2: Arithmetic Logic functions and associated control signals

(2) Simulate the operation of your hardware using ISE and the ALU test bench provided
on the laboratory website. Paste the output of the simulator into your lab write-up.

(3) Synthesize your design using the Device properties provided in Lab 3. Fix all
warnings and errors and ensure the compiled hardware contains no latches or flipflops. Provide the summary results of the synthesis process in your lab write-up.

2. Design the ALU control logic. The process of decoding an instruction into a control code
that the ALU can understand (Figure 2) is split up into two blocks. The first block is
contained within the control unit and will be addressed shortly.

The second block is the
ALU control block shown in Figure 1, which takes in an ALU op control code (Note the
control signal is thicker indicating a bus) from the control unit and the function field from
the current instruction.

The ALU control logic should asynchronously function as
follows:
• When the ALU op bus is not equal to 4’b1111, the ALU op code should be passed
directly to the ALU.

• When the ALU op bus is equal to 4’b1111, the function code should be used to
determine the ALU control code.

For R-type instructions, the control unit simply sets the ALU op to 4’b1111 and the ALU
control logic will interpret the arithmetic or logic function needed to carry out the
instruction and pass this information on to the ALU. However, when an instruction other
than an R-type instruction is executing, the control unit must specify the correct ALU
control signal on the ALU op bus.

(1) Describe the ALU control logic in Verilog using the following module interface:
module ALUControl(ALUCtrl, ALUop, FuncCode);

Helpful Hints:
• Case statements can be easily nested within if else statements within always@(*)
blocks.

• Use the following define statements (in addition to the ones provided above) for
code readability

(2) Simulate the operation of your hardware using ISE and the ALU control test bench
provided on the laboratory website. Paste the output of the simulator into your lab
write-up.

(3) Synthesize your design using the same Device properties as in Section 2. Fix all
warnings and errors and ensure the compiled hardware contains no latches or flipflops. Provide the summary results of the synthesis process in your lab write-up.