Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

PLEASE DO NOT COPY AND PASTE OTHER ANSWERS moduledff (clk, reset, d, q, qb); //write required parts here reg q; //write required parts here always

image text in transcribed

PLEASE DO NOT COPY AND PASTE OTHER ANSWERS

moduledff (clk, reset,

d, q, qb);

//write required parts here

reg q;

//write required parts here

always @(posedge clk or posedge reset)

begin

if (reset) begin

q

end else begin

q

end

end

endmodule

module test;

//write required parts here

dff DFF(.clk(clk), .reset(reset),

.d(d), .q(q), .qb(qb));

initial begin

$dumpfile("dump.vcd");

$dumpvars(1);

$display("Reset flop.");

clk = 0;

reset = 1;

d = 1'bx;

display;

$display("Release reset.");

d = 1;

reset = 0;

display;

$display("Toggle clk.");

clk = 1;

display;

end

task display;

#1 $display("d:%0h, q:%0h, qb:%0h",

d, q, qb);

endtask

endmodule

In this lab, you will build a system verilog module and its teshbench in Edaplayground or Modelsim. I recommend you to use EDAplayground which can be accessed from www. Edaplayground. com. You need to create an account to use it. It is all free. Lets say you are given the figure representing the waveforms of clk, d, q,qp, and reset signals after a system verilog module namely design.sv and its testbench namely testbench.sv are run Your task in this lab is to fill in the required parts of the design.sv and testbench.sv files. The required parts are stated using comments in these files

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

Database And Expert Systems Applications Dexa 2021 Workshops Biokdd Iwcfs Mlkgraphs Al Cares Protime Alsys 2021 Virtual Event September 27 30 2021 Proceedings

Authors: Gabriele Kotsis ,A Min Tjoa ,Ismail Khalil ,Bernhard Moser ,Atif Mashkoor ,Johannes Sametinger ,Anna Fensel ,Jorge Martinez-Gil ,Lukas Fischer

1st Edition

ISBN: 3030871002, 978-3030871000

More Books

Students also viewed these Databases questions

Question

What are the purposes of collection messages? (Objective 5)

Answered: 1 week ago