Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Problem with getting output signals in qsim (Verilog)

Status
Not open for further replies.

vinodkumar

Full Member level 5
Joined
Oct 5, 2006
Messages
251
Helped
12
Reputation
24
Reaction score
3
Trophy points
1,298
Location
hyderabad
Activity points
2,822
Hi ,iam unable to get the output signls in the objects,waveform for verilog in qsim,for the simple code written has shown below:

module ffpos(clk, d, q);
input clk;
input d;
output q;
reg q;

always@(posedge clk)
begin
q<=d;

end

endmodule

IS there any error in the code written,but iam getting evrything well for VHDL.wht could be the reason.
 

Re: questasim-doubt

hi ,iam able to get rid of this,there is an option of optimize the design a checkbox,which was selected,if i remove tht iam able to get,otherwise to optimize thr are options to view ops even optimized,anyhow thanks iam able to clear this out,
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top