In computer systems it is necessary to provide a substantial amount of memory. If a system is
implemented using only FPGA technology, it is possible to provide some amount of memory by using the
memory resources that exist in the FPGA device. In this lab, we will examine the general issues involved
in implementing such memory.The FPGA included on the DE1-SoC board provides dedicated memory resources and has M10K blocks,
each of which contains 10240 memory bits. The M10K blocks can be configured to implement
memories of various sizes. A common term used to specify the size of a memory is its aspect ratio,
which gives the depth (in words) and the width (in bits) as depth × width. In this lab, we will use an
aspect ratio of 32 × 3.There are two important features of the M10K blocks:
1) They include registers to synchronize all the input and output signals to a clock input.
2) They have separate ports for writing data to the memory and reading data from the memory.A conceptual diagram of the Random-Access Memory (RAM) module that we want implement is shown
in Figure 1a. It contains 32 three-bit words (i.e., rows) that are accessed using a five-bit port, a
three-bit bidirectional port, and a control input. However, given the properties of the
M10K blocks, we will instead implement the modified 32 x 3 RAM module shown in Figure 1b. It includes
registers for the address, data input, and write ports, and uses a separate unregistered data output port.
Figure 1: 32 x 3 RAM module for Lab 2.Remember to start the tasks in this lab by either following the first steps from the Warmup Task
from Lab 1 or by making a copy of an existing Quartus project folder.Commonly used logic structures, such as adders, registers, counters, and memories, can be
implemented in an FPGA chip by using prebuilt modules that are provided in libraries. In this exercise,
we will use such a module to implement the memory shown in Figure 1b.
1) Create a new Quartus project.
2) Get a library RAM module from the IP Catalog:
a) Open the IP Catalog in the Quartus menu by clicking on → “ ”.
b) In the IP Catalog window, expand “ ”, then “ ”, then “
”. Then double-click “ ”.c) In the “ ” dialog box that opens, append the text “ ” to the end
of the file name and select “ ” as the file type. Then click “ ” to open the
configuration wizard.
d) In the configuration window, specify 3-bit width for the output bus and 32 words of memory.Then select the “ ” radio button for memory block type and “ ” for the
clocking method before clicking “ ”.e) Now, deselect the check box for registering (i.e., placing a register on) the “
”. This creates a RAM module that matches the structure in Figure 1b. Click “ ”
to accept the defaults for the rest of the settings in the Wizard.
f) You will have to click “ ” one more time at the Summary page to exit the Wizard.
If prompted, add the new Quartus Prime IP File to your project by clicking “ ”.3) Go to “ ” in the Project Navigator window and open (nested under
) to examine it. It defines the following module:4) Create a new SystemVerilog file called that instantiates the module, using
appropriate input and output signals for the memory ports as shown in Figure 1b.
a) Once you compile your circuit, various parts of the Compilation Report will indicate that the
RAM circuit is implemented using 96 bits in one of the FPGA memory blocks.
module ram32x3 (address, clock, data, wren, q);
input [4:0] address; // Address
input clock;
input [2:0] data; // DataIn
input wren; // Write
output [2:0] q; // DataOut
// …Check above the definition of this module. If you see a line that looks like the following:
you will need to add the same line just above your testbench module in Step 4, otherwise you
may see the following error message during simulation:
“… does not have a timeunit/timeprecision specification in effect, but other modules do.”5) Create a suitable testbench to verify that you can read and write to the memory in simulation.Instead of creating a memory module by using the IP Catalog, we can implement the required memory
by specifying its structure in SystemVerilog code as a multidimensional array. A 32 × 3 array, which has
32 words with 3 bits per word, can be declared by the statement:
On the FPGA, such an array can be implemented either by using flip-flops found in each logic cell or,
more efficiently, by using the built-in memory blocks.1) Write a SystemVerilog module in a new file that provides the necessary functionality as Task #1
but using a multidimensional array. You should be able to use the same testbench as Task #1.
2) Create a top-level SystemVerilog module in a new file that instantiates your new module and uses
the inputs and outputs on the DE1-SoC as specified:
a. Use switches – to specify and switches – to specify .
b. Use as the signal and as the input.c. Display the value (in hex) on – , the value on , and
on . A basic 7-segment driver module has been provided for you, which you can freely
change; describe any changes you make, but no testbench or waveforms are needed for this
module.3) Synthesize the circuit and download it to a DE1-SoC on LabsLand to test its functionality.You will likely encounter the following simulation error at first:
“Instantiation of ‘altsyncram’ failed. The design unit was not found.”
Solution: In the ModelSim menu, select → “ ” and then go to
the tab and add under “ ”.Then, go to the tab, select your testbench module, and click . If you are using
files to run your simulations, you can also add the text “ ” to the end of
line where you specify your testbench module.
logic [2:0] memory_array [31:0];In general, arrays with asynchronous reads (i.e., not registered) will be mapped to flip-flops and
arrays with synchronous reads (i.e., registered) will be mapped to memory blocks.
In LabsLand, make sure that you select the “Standard” user interface, as opposed to the
“Breadboard” that we used in Lab 1:The RAM blocks in Figure 1 have a single port for both read and write operations. For this task
you will create a different type of memory module that has separate ports for the addresses of read and
write operations. You will also learn how to create and use a memory initialization file (MIF).1) Generate the desired memory module from the IP Catalog by using the “ ” module
and call the file .
a) Under “ ”, select “
” and then “ ”.
b) Configure the memory size, clocking method, and registered ports the same way as in Task #1.
c) Under “ ”, select “
”.i. This setting specifies that it does not matter whether the memory outputs the new data
being written, or the old data previously stored, in the case that the write and read
addresses are the same during a write operation.d) Under “ ”, select “
” and specify the filename .
i. This memory initialization file (MIF) allows us to initialize our RAM to specific values that
are loaded when the circuit is programmed into the FPGA chip. You will create this MIF
file in Step 2.
e) Finish the Wizard and then examine the generated memory module in .2) Create your MIF file :
a) In the Quartus menu, go to → and then select “ ”.
b) Specify 32 words and word size of 3.
c) Manually fill the grid with the values you want to place in each memory address.
i. If helpful, the menu will let you adjust the number of cells per row displayed and the
address and memory radices.
d) Save the MIF file as . You can also manually edit this file in a text editor.3) Augment the top-level module (and its testbench) from Task #2 to use to toggle between the
memories of Task #2 ( ) and Task #3 ( ). The following requirements are purposefully
similar to Task #2 but pay attention to the differences. Any significant, new modules should have
testbenches and simulations; you should mention the source for any provided or reused modules.a) Use – and – to specify the write address and write data, respectively. Display
(in hex) the write address on – and the write data on .
b) Use a counter to cycle through read addresses about one per second (no verification needed).
Display (in hex) the read address on – and the 3-bit word content on .c) Use the 50 MHz clock, , to synchronize the system and use as a reset signal.
Make sure that you properly handle metastability issues for asynchronous inputs.
d) Make sure that the memories from Task #2 and Task #3 are independent of each other (i.e.,
writing to one memory should not be reflected in the other memory)!4) Test your circuit and verify that the initial contents of the memory match your file.
Make sure that you can independently write data to any address by using the switches and move
between the Task #2 and Task #3 memories using .Lab Demonstration/Turn-In Requirements
In-Person Demo
• Briefly show and explain your SystemVerilog memory implementation from Task #2.
• Briefly show and your file from Task #3.
• Demonstrate your working Task #3 memory circuit (which includes the Task #2 circuit) on the DE1-
SoC.
• Be prepared to answer 1-2 questions about your lab experience to the TA.Lab Report (submit as PDF on Gradescope)
• Include the required Design Procedure, Results, and Experience Report sections.
o The designs for basic or provided modules like the 7-segment driver and counter should be
briefly mentioned, but you do not need to include state diagrams or simulations for these.
• Don’t forget to also submit your SystemVerilog files ( ), including testbenches!Lab 2 Rubric
Grading Criteria Points
Name, student ID, lab number 2 pts
Design Procedure
▪ System block diagram for your finished Task #3 (this includes Tasks #2)
6 pts
Results
▪ Waveforms & explanations of Tasks #1 & 2 memories (recommended combined
into a single simulation)
▪ Waveforms & explanations of top-level module for Task #3
▪ Waveforms & explanations of any other significant and new modules for Task #3
12 pts
Experience Report 6 pts
SystemVerilog code uploaded 5 pts
Code Style 5 pts
LAB DEMO 26 pts
62 pts
Blocks, Circuits, Design, Digital, EE371, Memory, solved, Systems
[SOLVED] Ee371 design of digital circuits and systems, lab 2 memory blocks
$25
File Name: Ee371_design_of_digital_circuits_and_systems,_lab_2_memory_blocks.zip
File Size: 612.3 KB
Only logged in customers who have purchased this product may leave a review.
Reviews
There are no reviews yet.