Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1 . MIPS MUX Components Design module mux 2 # ( parameter WIDTH = 3 2 ) / / WIDTH = 5 for R .

1. MIPS MUX Components Design
module mux2 #(parameter WIDTH =32)// WIDTH =5 for R. F.(d0, d1, s, y);
input [WIDTH-1:0] d0, d1;
input s;
output [WIDTH-1:0] y;
endmodule
2. MIPS IM (Instr. Mem.) Component Design
module im_4k( addr, dout );
input [11:2] addr;
output [31:0] dout;
...
...
endmodule
(PLEASE ADD CLK SIGNAL TO THIS MODULE)
3. MIPS DM (Data Mem.) Component Design
module dm_4k( addr, din, DMWr, clk, dout );
input [11:2] addr;
input [31:0] din;
input DMWr;
input clk;
output [31:0] dout;
...
...
endmodule
QUESTIONS.
1. Basic specification of four components.
2. Explanation of design with block diagrams.
3. Test bench design.
4. Test results: input data & waveform.
(NOTE: USE THE ABOVE DIAGRAM AND THE CODES TO ANWANSWERER THIS QUESTIONS AND ALSO INCLUDES SCREENSHOTS OF THE TEST BENCH WHEN RUNNED)*ALSO ADD THE CLK SIGNAL TO CODE NUMBER 2, AS MENTIONED ABOVE*
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Concepts of Database Management

Authors: Philip J. Pratt, Joseph J. Adamski

7th edition

978-1111825911, 1111825912, 978-1133684374, 1133684378, 978-111182591

More Books

Students also viewed these Databases questions

Question

preparing for and completing job interviews and considering offers.

Answered: 1 week ago