Forum Discussion
sstrell
Super Contributor
10 months agoIt's not usually a good idea to have your project in the Quartus installation directory.
But besides that, can you show your code?
aditya_
New Contributor
10 months agomodule inv(
input a,
output y
);
assign y= ~a;
endmodule
--------------------------------------
`timescale 1ns/1ps
module tb_inv;
reg a;
wire y;
inv uut (
.a(a),
.y(y)
);
// Testbench logic
initial begin
a = 0; #10;
a = 1; #10;
end
endmodule