Question: PLEASE DO NOT COPY AND PASTE OTHER ANSWERS PLEASE FILL WRTE REQUIRED PARTS HERE moduledff (clk, reset, d, q, qb); //write required parts here reg
PLEASE DO NOT COPY AND PASTE OTHER ANSWERS
PLEASE FILL WRTE REQUIRED PARTS HERE
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
Get step-by-step solutions from verified subject matter experts
