COMP4300 Lab 4 Solved

35.00 $

Category:
Click Category Button to View Your Next Assignment | Homework

You'll get a download link with a: zip solution files instantly, after Payment

Securely Powered by: Secure Checkout

Description

5/5 - (1 vote)

 

This lab builds the MIPS controller and gets a few instructions running.

Instructions

Develop VHDL for the MIPS controller and instruction decoder entities. You should develop an architecture for each of the entities given below. A template for the architecture of the controller is also given, just so you won’t get way off track by starting off wrong. THIS BUILDS ON THE LAB THREE3 RESULTS, SO IF YOU DON’T HAVE THOSE WORKING, THAT IS YOUR FIRST TASK. The entity declarations for the controller and decoder are at the ftp site in the file lab4_control_v3.vhd.

First, you will have to develop some remaining components not asked for in LAB 3. These include a one- bit register (to store the jump condition code), a five-bit mux (to handle write-back register index). The entity declarations for these components are in the file lab4_datapath_v4.vhd on Canvas.

I am giving you the entities for the memories IM and DM in the file lab4_datapath_v4.vhd on Blackboard. The IM and DM memories bear some mention. Your processor should start loading instructions from address 0 of the instruction memory (IM), then load subsequent instructions from address 4, 8, etc. We are not handling jumps yet. To make things easier, the IM entity returns you a full DLX word from the address you ask for. It is just a 1023 element array of dlx_word . The only way I have implemented for entering your program is for you to pre-load the IM with some hard-coded instructions. I’ve preloaded one for you at address zero:

 LW R1,4092(R0)

That is the first instruction you should get working. You should develop test programs for all the instructions you are expected to implement (see below).

The global wiring for the MIPS is found in a file on Blackboard lab4_mips_v5.vhd . This defines the top-level entity mips and connects the components.

You should test the mips entity by developing simulation files for the entity. You will of course have to do unit testing on the instruction decoder and dlx controller, but I don’t want to see those results unless you have problems and have a question.

The only input to the MIPS itself is an external clock. This clock will have a 200ns cycle time (i.e. it is zero from time 0 to time 100, 1 from time 101 to time 200, 0 from 201 to 300, etc.). This is long enough to let all the 5 ns delays run out before the clock cycle ends.

You should use the dlx_types package in the datapath file to for the various pieces of a dlx word. Propagation delays through the decoder and controller should be 5 ns, just like all the other functional

units.

Instruction Decoder This is just another piece of combinational logic that takes an instruction as input and chops it into the appropriate component pieces. If a field is not used for a particular type of instruction, set it to zero (won’t matter, because it won’t be used).

MIPS Controller This is a 5-state machine that handles the clock inputs to all the latches, sets the control inputs to the multiplexors, and converts the function code into a 4-bit code and signed bit for the ALU. It should implement the MIPS architecture exactly as described in textbook sections A.3 (but no pipeline). Each instruction will take 5 cycles to execute, and instruction execution will not overlap.

Opcodes and function codes Here are the opcodes and function codes you will need to run MIPS instructions. Ignore the 5-bit “shamt” filed in instructions. All the function codes we will use fit in the 6-bit “funct” field (Textbook figure 2.27). These are the ONLY operations I want you to spend time on, until you get these all running. If you do get them all, and want some more, come and see me for extra credit.

ADD opcode = 0x0,
ADDU opcode = 0x0,
ADDI opcode = 0x8,
ADDUI opcode = 0x9
SUB opcode = 0x0,
SUBI opcode = 0xa
SUBU opcode = 0x0,
MUL opcode = 0x0, function = 0xe MULU opcode = 0x0, function = 0x16

alu_oper = 0x0, signed = 1
alu_oper = 0x0, signed = 0
alu_oper = 0x0, signed = 1
alu_oper = 0x0, signed = 0
alu_oper = 0x1, signed = 1
alu_oper = 0x1, signed = 1
alu_oper = 0x1, signed = 0
alu_oper = 0xe, signed = 1
alu_oper = 0xe, signed = 0
alu_oper = 0x2

alu_oper = 0x2
alu_oper = 0x3
alu_oper = 0xb, signed = 1 alu_oper = 0x??, signed = 0

AND   opcode = 0x0,
ANDI  opcode = 0xc
OR    opcode = 0x0,
SLT   opcode = 0x0,
SLTU  opcode = 0x0,
LW    opcode = 0x23
SW    opcode = 0x2b
function = 0x24
function = 0x25
function = 0x2a
function = 0x2b
function = 0x20,
function =0x21,
function = 0x22
function = 0x23

If you finish all this and want the extra credit introduce conditional and unconditional branches.

Deliverables

Just as in the previous lab, please turn in the following things for this lab:

  • A text file your VHDL code.
  • Your simulation test files. Do not exhaustively test these designs since they take lots of input bits,

    but do test a reasonable number of things. Mainly for this lab you need to show instructions

    executing.

  • lab4-xuqpdc.zip