Question: ( 1 0 Points ) Design a DataMemory module that has the following format: module DataMemory ( Address , WriteData, MemRead, MemWrite, Clk , ReadData

(10 Points) Design a DataMemory module that has the following format:
module DataMemory(Address, WriteData, MemRead, MemWrite, Clk,
ReadData);
input [6:0] Address; //7-bit address to memory.
input [31:0] WriteData; // Data to be written into WriteRegister
input MemRead; // Data in memory location Address is read if this
control is set
Input MemWrite; // WriteData is written in Address during positive
clock edge if this control is set
output [31:0] ReadData; // Value read from memory location Address

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!